MessagePropertyFilter.Label Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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.