Aracılığıyla paylaş


MessagePropertyFilter.UseTracing Özellik

Tanım

bir iletiyi alırken veya göz atarken özellik bilgilerinin alınıp alınmayacağını UseTracing belirten bir değer alır veya ayarlar.

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

Özellik Değeri

true bilgilerini almak UseTracing için; aksi takdirde , false. Varsayılan değer: false.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğinin UseTracing kullanımını gösterir.

// 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);

Açıklamalar

UseTracing sınıfının özelliği, bir iletinin Message hedef kuyruğuna doğru izlenip izlenmeyeceğini belirtir. özgün trueileti bir Message Queuing yönlendirme sunucusundan her geçtiğinde, sistem raporu kuyruğuna Message Queuing tarafından oluşturulan bir rapor iletisi gönderilir.

İzlemenin kullanılması, Active Directory'yi ayarlamayı ve Message Queuing kuruluşu için bir rapor kuyruğu belirtmeyi içerir. Bu ayarlar yönetici tarafından yapılandırılır.

Şunlara uygulanır

Ayrıca bkz.