MessagePropertyFilter.UseTracing 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出在接收或窺視訊息時是否要擷取 UseTracing 屬性資訊。
public:
property bool UseTracing { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgUseTracing")]
public bool UseTracing { get; set; }
[<System.Messaging.MessagingDescription("MsgUseTracing")>]
member this.UseTracing : bool with get, set
Public Property UseTracing As Boolean
屬性值
true
表示接收 UseTracing 資訊,否則為 false
。 預設為 false
。
- 屬性
範例
下列程式代碼範例示範 屬性的使用 UseTracing 。
// Set the queue's MessageReadPropertyFilter property
// to enable the message's UseTracing property.
queue->MessageReadPropertyFilter->UseTracing = true;
// Peek at the message. Time out after ten seconds
// in case the message was not delivered.
orderMessage = queue->Peek(TimeSpan::FromSeconds(10.0));
// Display the value of the message's
// UseTracing property.
Console::WriteLine("Message.UseTracing: {0}",
orderMessage->UseTracing);
// Set the queue's MessageReadPropertyFilter property to enable the
// message's UseTracing property.
queue.MessageReadPropertyFilter.UseTracing = true;
// Peek at the message. Time out after ten seconds in case the message
// was not delivered.
orderMessage = queue.Peek(TimeSpan.FromSeconds(10.0));
// Display the value of the message's UseTracing property.
Console.WriteLine("Message.UseTracing: {0}",
orderMessage.UseTracing);
備註
類別 UseTracing 的 Message 屬性會指定是否要在訊息移至目的地佇列時追蹤訊息的路由。 如果 true
為 ,則每次原始訊息通過消息佇列路由伺服器時,就會將消息佇列產生的報表訊息傳送至系統報表佇列。
使用追蹤牽涉到設定 Active Directory,並指定消息佇列企業的報告佇列。 這些設定是由系統管理員所設定。