ExecutionEventHandler Delegate
Describes the signature of a handler that will be called either before or after the execution of a method. The handler is called to pre-process the inputs of the method to be executed or to post-process the outputs of the executed method.
Namespace: Microsoft.BusinessData.Runtime
Assembly: Microsoft.BusinessData (in Microsoft.BusinessData.dll)
Syntax
'Declaration
Public Delegate Sub ExecutionEventHandler ( _
context As IExecutionContext, _
executingMethod As IExecutionInfo _
)
'Usage
Dim instance As New ExecutionEventHandler(AddressOf HandlerMethod)
public delegate void ExecutionEventHandler(
IExecutionContext context,
IExecutionInfo executingMethod
)
Parameters
context
Type: Microsoft.BusinessData.Runtime.IExecutionContextThe context of the method execution.
executingMethod
Type: Microsoft.BusinessData.Runtime.IExecutionInfoThe method to be executed or that finished execution.