MessagePropertyFilter.SenderCertificate Property

Definition

Gets or sets a value that indicates whether to retrieve SenderCertificate property information when receiving or peeking a 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

Property Value

true to receive SenderCertificate information; otherwise, false. The default is false.

Attributes

Examples

The following code example demonstrates the use of the SenderCertificate property.

// 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);

Remarks

The SenderCertificate property of the Message class specifies the security certificate used to authenticate messages.

Applies to

See also