WebBaseEvent.Message 屬性

定義

取得描述事件的訊息。

public:
 property System::String ^ Message { System::String ^ get(); };
public string Message { get; }
member this.Message : string
Public ReadOnly Property Message As String

屬性值

String

事件的描述。

範例

下列程式碼範例示範如何取得 Message 值。

// Gets the event sequence.
public long GetEventSequence()
{
    // Get the event sequence.
    long eventSequence = EventSequence;
    return eventSequence;
}
' Gets the event sequence.
Public Function GetEventSequence() As Long
    ' Get the event sequence.
    Dim eventSequence As Long = eventSequence
    Return eventSequence

End Function 'GetEventSequence

備註

這個屬性描述與引發事件相關聯之 WebEventCodes 程式碼值的意義。

適用於