Message::UseEncryption Property
Gets or sets a value that indicates whether to make the message private.
Assembly: System.Messaging (in System.Messaging.dll)
public: [MessagingDescriptionAttribute("MsgUseEncryption")] property bool UseEncryption { bool get(); void set(bool value); }
Property Value
Type: System::Booleantrue to require Message Queuing to encrypt the message; otherwise, false. The default is false.
| Exception | Condition |
|---|---|
| InvalidOperationException | The message queue is filtered to ignore the UseEncryption property. |
If a message is private, its body is encrypted before it is sent and decrypted when it is received. To send a private message, the sending application must specify that encryption be used and, optionally, the encryption algorithm.
When sending private messages, your application does not need to perform the message encryption. Message Queuing can encrypt the message body for you if your application is sending messages within a Microsoft Windows 2000 enterprise, which has access to the directory service. When receiving private messages, the receiving Queue Manager always decrypts the message body.
The following code example gets and sets the value of a message's UseEncryption property.
Available since 1.1