MessagePropertyFilter.UseEncryption Свойство

Определение

Получает или задает значение, указывающее, следует ли извлекать сведения свойства UseEncryption при получении или считывании сообщения.

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

Значение свойства

Значение true означает получение сведений UseEncryption, в противном случае — значение false. Значение по умолчанию — false.

Атрибуты

Примеры

В следующем примере кода демонстрируется использование 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);
// 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);

Комментарии

Свойство UseEncryption класса указывает, Message следует ли шифровать сообщение.

Применяется к

См. также раздел