TraceSource.Name 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得追蹤來源的名稱。
public:
property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
member this.Name : string
Public ReadOnly Property Name As String
屬性值
追蹤來源的名稱。
範例
下列程式代碼範例示範如何在建構函式呼叫中命名追蹤來源。 此程式代碼範例是提供給 類別之較大範例的 TraceSource 一部分。
// Initialize the trace source.
static TraceSource ts = new TraceSource("TraceTest");
' Initialize the trace source.
Private Shared ts As New TraceSource("TraceTest")
備註
名稱是由 name
傳遞至建構函式的參數所設定。
您可以在 .NET Framework 應用程式的組態檔中使用 name
屬性來參考追蹤來源。 下列 XML 元素示範如何在 .NET Framework 應用程式的組態檔中參考追蹤來源。
<configuration>
<system.diagnostics>
<sources>
<source name="TraceTest">
</source>
</sources>
</system.diagnostics>
</configuration>