MessagePropertyFilter.UseTracing Proprietà

Definizione

Ottiene o imposta un valore che indica se recuperare le informazioni della proprietà UseTracing quando si riceve o si visualizza un messaggio.

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

Valore della proprietà

true per ricevere le informazioni di UseTracing; false in caso contrario. Il valore predefinito è false.

Attributi

Esempio

Nell'esempio di codice seguente viene illustrato l'uso UseTracing della proprietà.

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

Commenti

La UseTracing proprietà della classe specifica se tenere traccia della Message route di un messaggio mentre si sposta verso la coda di destinazione. Se true, ogni volta che il messaggio originale passa attraverso un server di routing Accodamento messaggi, viene inviato un messaggio di report generato da Accodamento messaggi alla coda del report di sistema.

L'uso della traccia comporta la configurazione di Active Directory e la specifica di una coda di report per l'organizzazione Accodamento messaggi. Queste impostazioni vengono configurate dall'amministratore.

Si applica a

Vedi anche