BatchCompletionEventHandler Delegate
Represents a method that handles the batch completion event.
Namespace: Microsoft.BusinessData.Runtime
Assembly: Microsoft.BusinessData (in Microsoft.BusinessData.dll)
Syntax
'Declaration
Public Delegate Sub BatchCompletionEventHandler ( _
sender As Object, _
args As BatchCompletionEventArgs _
)
'Usage
Dim instance As New BatchCompletionEventHandler(AddressOf HandlerMethod)
public delegate void BatchCompletionEventHandler(
Object sender,
BatchCompletionEventArgs args
)
Parameters
sender
Type: System.ObjectThe enumerator that raised this event.
args
Type: Microsoft.BusinessData.Runtime.BatchCompletionEventArgsArguments of the event.
Remarks
This event is raised when an enumerator has enumerated all the results of an invocation to the external system, and needs to invoke the function again to obtain additional results.