MessagePropertyFilter.UseEncryption Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece un valor que indica si se debe recuperar información de la propiedad UseEncryption al recibir un mensaje o leerlo.
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
Valor de propiedad
true
para recibir información de UseEncryption; en cualquier otro caso, false
. De manera predeterminada, es false
.
- Atributos
Ejemplos
En el ejemplo de código siguiente se muestra el uso de la UseEncryption propiedad .
// 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);
Comentarios
La UseEncryption propiedad de la Message clase especifica si se va a cifrar un mensaje.