MessagePropertyFilter.UseEncryption 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à UseEncryption quando si riceve o si visualizza un messaggio.
public:
property bool UseEncryption { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgUseEncryption")]
public bool UseEncryption { get; set; }
[<System.Messaging.MessagingDescription("MsgUseEncryption")>]
member this.UseEncryption : bool with get, set
Public Property UseEncryption As Boolean
Valore della proprietà
true
per ricevere le informazioni di UseEncryption; false
in caso contrario. Il valore predefinito è false
.
- Attributi
Esempio
Nell'esempio di codice seguente viene illustrato l'uso UseEncryption della proprietà.
// Set the queue's MessageReadPropertyFilter property
// to enable the message's UseEncryption property.
queue->MessageReadPropertyFilter->UseEncryption = 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
// UseEncryption property.
Console::WriteLine("Message.UseEncryption: {0}",
orderMessage->UseEncryption);
// Set the queue's MessageReadPropertyFilter property to enable the
// message's UseEncryption property.
queue.MessageReadPropertyFilter.UseEncryption = 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 UseEncryption property.
Console.WriteLine("Message.UseEncryption: {0}",
orderMessage.UseEncryption);
Commenti
La UseEncryption proprietà della Message classe specifica se crittografare un messaggio.