AxEventHandlerDelegate Delegate

You can pass in instances of the AxEventHandlerDelegate delegate to Microsoft Dynamics AX and they will be transformed into ManagedEventDelegate X++ objects, once they are in X++ you can call the invoke method to call out and execute the managed event delegate.

Namespace:  Microsoft.Dynamics.BusinessConnectorNet
Assembly:  Microsoft.Dynamics.BusinessConnectorNet (in Microsoft.Dynamics.BusinessConnectorNet.dll)

Syntax

'Declaration
Public Delegate Sub AxEventHandlerDelegate ( _
    sender As Object, _
    args As Object _
)
'Usage
Dim instance As New AxEventHandlerDelegate(AddressOf HandlerMethod)
public delegate void AxEventHandlerDelegate(
    Object sender,
    Object args
)
public delegate void AxEventHandlerDelegate(
    Object^ sender, 
    Object^ args
)

Parameters

See Also

Reference

Microsoft.Dynamics.BusinessConnectorNet Namespace