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.Object

    The enumerator that raised this 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.

See Also

Reference

Microsoft.BusinessData.Runtime Namespace

IBatchableEntityInstanceEnumerator