MessagePropertyFilter.Label Propriété

Définition

Obtient ou définit une valeur qui indique si les informations de la propriété Label doivent être récupérées lors de la réception ou de la lecture d'un message.

public:
 property bool Label { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgLabel")]
public bool Label { get; set; }
[<System.Messaging.MessagingDescription("MsgLabel")>]
member this.Label : bool with get, set
Public Property Label As Boolean

Valeur de propriété

true pour recevoir les informations Label ; sinon, false. La valeur par défaut est true.

Attributs

Exemples

L’exemple de code suivant illustre l’utilisation de la Label propriété .

// Set the queue's MessageReadPropertyFilter property 
// to enable the message's Label property.
queue->MessageReadPropertyFilter->Label = 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 Label property.
Console::WriteLine("Message.Label: {0}", 
    orderMessage->Label);
// Set the queue's MessageReadPropertyFilter property to enable the
// message's Label property.
queue.MessageReadPropertyFilter.Label = 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 Label property.
Console.WriteLine("Message.Label: {0}",
    orderMessage.Label);

Remarques

La Label propriété de la Message classe spécifie l’étiquette du message.

S’applique à

Voir aussi