IExecutionContext Members
Include Protected Members
Include Inherited Members
Represents an execution context that is used to track and modify the behavior of operations against the external system, also allowing direct communication between a custom connector and the application.
The IExecutionContext type exposes the following members.
Properties
Name | Description | |
---|---|---|
ExecutedMethods | Gets a collection of methods executed in this context. | |
Item | Gets or sets properties in this execution context, which will be accessible to the BDC connector. |
Top
Methods
Name | Description | |
---|---|---|
Dispose | (Inherited from IDisposable.) | |
IsManagedProperty | Determines whether a property is managed by the execution context. | |
IsPropertyDefined | Determines whether the specified property exists in the execution context. | |
ManageProperty | Marks a property as managed, in which case, it will be disposed when the context is disposed. | |
UndefineProperty | Removes the property from the execution context. | |
UnManageProperty | Marks a property as unmanaged, preventing it to be disposed when the execution context is disposed. |
Top
Events
Name | Description | |
---|---|---|
MethodExecuted | Raised after a method is executed against the external system in this context. | |
MethodExecuting | Raised before a method is executed against the external system in this context. |
Top