MessagePropertyFilter.SenderCertificate 属性
定义
获取或设置一个值,该值指示接收或查看消息时是否检索 SenderCertificate 属性信息。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
属性值
如果接收 SenderCertificate 信息,则为 true;否则为 false。true to receive SenderCertificate information; otherwise, false. 默认值为 false。The default is false.
- 属性
示例
下面的代码示例演示属性的用法 SenderCertificate 。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);
注解
SenderCertificate类的属性 Message 指定用来对消息进行身份验证的安全证书。The SenderCertificate property of the Message class specifies the security certificate used to authenticate messages.