GetSyntax Method (DALBLTConnection)
- Last UpdatedApr 08, 2026
- 1 minute read
Creates a Business Logic Tier (BLT) component, and gets its syntax.
public OASySDNA.Common.DAL.ClientSDK.DriverRequest GetSyntax(
string componentName,
DALBLTConnection.DALBLTSyntaxDelegate syntaxDelegateMethod,
object clientObject
)
public:
OASySDNA.Common.DAL.ClientSDK.DriverRequest^ GetSyntax(
String^ componentName,
DALBLTConnection.DALBLTSyntaxDelegate^ syntaxDelegateMethod,
Object^ clientObject
)
Parameters
- componentName
- The component name that is created to get the syntax.
- syntaxDelegateMethod
- The delegate method that is called to return the syntax.
- clientObject
- The reference to the client object.
Return Value
The Data Access Layer (DAL) OASySDNA.Common.DAL.ClientSDK.DriverRequest handler. The user can call CancelRequest() to cancel the pending request.
| Exception | Description |
|---|---|
| System.ArgumentNullException | The syntaxDelegateMethod must be non-null. |
| System.ObjectDisposedException | Thrown if this DALBLTConnection instance is disposed. |