Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
- sender
Type: System.Object
- args
Type: System.Object