Udostępnij za pośrednictwem


WebBaseEvent.EventTimeUtc Właściwość

Definicja

Pobiera czas, kiedy zdarzenie zostało podniesione.

public:
 property DateTime EventTimeUtc { DateTime get(); };
public DateTime EventTimeUtc { get; }
member this.EventTimeUtc : DateTime
Public ReadOnly Property EventTimeUtc As DateTime

Wartość właściwości

DateTime

Godzina zdarzenia w formacie uniwersalnego czasu koordynowanego (UTC).

Przykłady

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

// Gets the event time.
public DateTime GetEventTimeUtc()
{
    // Get the event source.
    DateTime eTime = EventTimeUtc;
    return eTime;
}
' Gets the event time.
Public Function GetEventTimeUtc() As DateTime
    ' Get the event source.
    Dim eTime As DateTime = EventTimeUtc
    Return eTime

End Function 'GetEventTimeUtc

Dotyczy