CollectionChangeEventHandler Delegate

Represents the method that will handle the OnCollectionChange event.

Namespace:  Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)

Syntax

'Declaration
Public Delegate Sub CollectionChangeEventHandler ( _
    sender As Object, _
    e As CollectionChangeEventArgs _
)
'Usage
Dim instance As New CollectionChangeEventHandler(AddressOf HandlerMethod)
public delegate void CollectionChangeEventHandler(
    Object sender,
    CollectionChangeEventArgs e
)
public delegate void CollectionChangeEventHandler(
    Object^ sender, 
    CollectionChangeEventArgs^ e
)
type CollectionChangeEventHandler = 
    delegate of 
        sender:Object * 
        e:CollectionChangeEventArgs -> unit
JScript supports the use of delegates, but not the declaration of new ones.

Parameters

  • sender
    Type: System.Object
    Represents the event calling the object.

Remarks

New: 17 July 2006