MessagePropertyFilter.EncryptionAlgorithm Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera lub ustawia wartość wskazującą, czy pobierać EncryptionAlgorithm informacje o właściwości podczas odbierania lub podglądu komunikatu.
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
Wartość właściwości
true
aby otrzymywać EncryptionAlgorithm informacje; w przeciwnym razie false
. Wartość domyślna to false
.
- Atrybuty
Przykłady
Poniższy przykład kodu przedstawia użycie EncryptionAlgorithm właściwości.
// 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);
Uwagi
Jeśli wiadomość jest prywatna, jest szyfrowana przed wysłaniem i odszyfrowywaniem po odebraniu. Właściwość EncryptionAlgorithmMessage klasy określa algorytm używany do szyfrowania treści komunikatu w prywatnej wiadomości.