MsmqMessage<T>.Authenticated 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个布尔值,该值指示消息是否已验证。
public:
property Nullable<bool> Authenticated { Nullable<bool> get(); };
public bool? Authenticated { get; }
member this.Authenticated : Nullable<bool>
Public ReadOnly Property Authenticated As Nullable(Of Boolean)
属性值
如果消息已验证,则为 true
;否则为 false
。
示例
if (message.Authenticated == true)
Console.WriteLine("Message was authenticated");
If message.Authenticated = True Then
Console.WriteLine("Message was authenticated")
End If
注解
如果发送方请求验证,或向配置为需要验证的消息队列发送消息,则就会进行消息验证。