MessagePropertyFilter.Label Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta un valore che indica se recuperare le informazioni della proprietà Label quando si riceve o si visualizza un messaggio.
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
Valore della proprietà
true
per ricevere le informazioni di Label; false
in caso contrario. Il valore predefinito è true
.
- Attributi
Esempio
Nell'esempio di codice seguente viene illustrato l'uso Label della proprietà.
// 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);
Commenti
La Label proprietà della Message classe specifica l'etichetta del messaggio.