CollectionChangeEventHandler Delegate

 

Applies To: SQL Server (starting with 2016)

Represents the method that will handle the OnCollectionChange event.

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

Syntax

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
Public Delegate Sub CollectionChangeEventHandler (
    sender As Object,
    e As CollectionChangeEventArgs
)

Parameters

  • sender
    Type: System.Object

    Represents the event calling the object.

See Also

Microsoft.AnalysisServices Namespace

Return to top