Udostępnij za pośrednictwem


WebBaseEvent.EventSource Właściwość

Definicja

Pobiera obiekt, który zgłasza zdarzenie.

public:
 property System::Object ^ EventSource { System::Object ^ get(); };
public object EventSource { get; }
member this.EventSource : obj
Public ReadOnly Property EventSource As Object

Wartość właściwości

Obiekt, który wzbudził zdarzenie.

Przykłady

W poniższym przykładzie kodu pokazano, jak uzyskać EventSource wartość.

// Gets the event source.
public Object GetEventSource()
{
    // Get the event source.
    Object source = this.EventSource;
    return source;
}
' Gets the event source.
Public Function GetEventSource() As [Object]
    ' Get the event source.
    Dim [source] As [Object] = Me.EventSource
    Return [source]

End Function 'GetEventSource

Dotyczy