OperationErrorsDataSet.OperationErrorChangeEventHandler Delegate

For the latest version of Commerce Server 2007 Help, see the Microsoft Web site.

Represents the method that will handle the Change event.

Namespace:  Microsoft.CommerceServer.Catalog
Assembly:  Microsoft.CommerceServer.Catalog (in Microsoft.CommerceServer.Catalog.dll)

Syntax

'Declaration
Public Delegate Sub OperationErrorChangeEventHandler ( _
    sender As Object, _
    e As OperationErrorsDataSet..::.OperationErrorChangeEvent _
)
'Usage
Dim instance As New OperationErrorChangeEventHandler(AddressOf HandlerMethod)
public delegate void OperationErrorChangeEventHandler(
    Object sender,
    OperationErrorsDataSet..::.OperationErrorChangeEvent e
)
public delegate void OperationErrorChangeEventHandler(
    Object^ sender, 
    OperationErrorsDataSet..::.OperationErrorChangeEvent^ e
)
JScript does not support delegates.

Parameters

Remarks

When you create a ChangeEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate.

The event model in the .NET Framework is based on having an event delegate that connects an event with its handler. To raise an event, two elements are needed:

  • A class that holds the event data. This class must derive from the base class EventArgs.

  • A method response to the event.

See Also

Reference

Microsoft.CommerceServer.Catalog Namespace