MessagePropertyFilter.EncryptionAlgorithm Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Получает или задает значение, указывающее, следует ли извлекать сведения свойства EncryptionAlgorithm при получении или считывании сообщения.
public:
property bool EncryptionAlgorithm { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgEncryptionAlgorithm")]
public bool EncryptionAlgorithm { get; set; }
[<System.Messaging.MessagingDescription("MsgEncryptionAlgorithm")>]
member this.EncryptionAlgorithm : bool with get, set
Public Property EncryptionAlgorithm As Boolean
Значение свойства
Значение true
означает получение сведений EncryptionAlgorithm, в противном случае — значение false
. Значение по умолчанию — false
.
- Атрибуты
Примеры
В следующем примере кода демонстрируется использование EncryptionAlgorithm свойство.
// Set the queue's MessageReadPropertyFilter property
// to enable the message's EncryptionAlgorithm property.
queue->MessageReadPropertyFilter->
EncryptionAlgorithm = 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
// EncryptionAlgorithm property.
Console::WriteLine("Message.EncryptionAlgorithm: {0}",
orderMessage->EncryptionAlgorithm);
// Set the queue's MessageReadPropertyFilter property to enable the
// message's EncryptionAlgorithm property.
queue.MessageReadPropertyFilter.EncryptionAlgorithm = 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 EncryptionAlgorithm property.
Console.WriteLine("Message.EncryptionAlgorithm: {0}",
orderMessage.EncryptionAlgorithm);
Комментарии
Если сообщение является частным, оно шифруется перед отправкой и расшифровывается при получении. Свойство EncryptionAlgorithmMessage класса задает алгоритм, используемый для шифрования текста сообщения частного сообщения.