MessagePropertyFilter.EncryptionAlgorithm 属性
定义
获取或设置一个值,该值指示接收或查看消息时是否检索 EncryptionAlgorithm 属性信息。Gets or sets a value that indicates whether to retrieve EncryptionAlgorithm property information when receiving or peeking a message.
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
属性值
如果接收 EncryptionAlgorithm 信息,则为 true;否则为 false。true to receive EncryptionAlgorithm information; otherwise, false. 默认值为 false。The default is false.
- 属性
示例
下面的代码示例演示属性的用法 EncryptionAlgorithm 。The following code example demonstrates the use of the EncryptionAlgorithm property.
// 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);
注解
如果消息是私有的,则在发送它并在收到消息时解密。If a message is private, it is encrypted before it is sent and decrypted when it is received. EncryptionAlgorithm类的属性 Message 指定用于对专用消息的消息正文进行加密的算法。The EncryptionAlgorithm property of the Message class specifies the algorithm used to encrypt the message body of a private message.