MessagePropertyFilter.SenderCertificate Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit une valeur qui indique si les informations de la propriété SenderCertificate doivent être récupérées lors de la réception ou de la lecture d'un message.
public:
property bool SenderCertificate { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgSenderCertificate")]
public bool SenderCertificate { get; set; }
[<System.Messaging.MessagingDescription("MsgSenderCertificate")>]
member this.SenderCertificate : bool with get, set
Public Property SenderCertificate As Boolean
Valeur de propriété
true
pour recevoir les informations SenderCertificate ; sinon, false
. La valeur par défaut est false
.
- Attributs
Exemples
L’exemple de code suivant illustre l’utilisation de la SenderCertificate propriété .
// Set the queue's MessageReadPropertyFilter property
// to enable the message's SenderCertificate property.
queue->MessageReadPropertyFilter->
SenderCertificate = 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
// SenderCertificate property.
Console::WriteLine("Message.SenderCertificate: {0}",
orderMessage->SenderCertificate);
// Set the queue's MessageReadPropertyFilter property to enable the
// message's SenderCertificate property.
queue.MessageReadPropertyFilter.SenderCertificate = 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 SenderCertificate property.
Console.WriteLine("Message.SenderCertificate: {0}",
orderMessage.SenderCertificate);
Remarques
La SenderCertificate propriété de la Message classe spécifie le certificat de sécurité utilisé pour authentifier les messages.