MessagePropertyFilter.AuthenticationProviderName プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
メッセージを受信またはピークするときに AuthenticationProviderName プロパティ情報を取得するかどうかを示す値を取得または設定します。
public:
property bool AuthenticationProviderName { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgAuthenticationProviderName")]
public bool AuthenticationProviderName { get; set; }
[<System.Messaging.MessagingDescription("MsgAuthenticationProviderName")>]
member this.AuthenticationProviderName : bool with get, set
Public Property AuthenticationProviderName As Boolean
プロパティ値
AuthenticationProviderName 情報を受信する場合は true
。それ以外の場合は false
。 既定値は、false
です。
- 属性
例
次のコード例では、 プロパティの使用方法を AuthenticationProviderName 示します。
// Set the queue's MessageReadPropertyFilter property
// to enable the message's
// AuthenticationProviderName property.
queue->MessageReadPropertyFilter->
AuthenticationProviderName = 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
// AuthenticationProviderName property.
Console::WriteLine(
"Message.AuthenticationProviderName: {0}",
orderMessage->AuthenticationProviderName);
// Set the queue's MessageReadPropertyFilter property to enable the
// message's AuthenticationProviderName property.
queue.MessageReadPropertyFilter.AuthenticationProviderName = 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 AuthenticationProviderName
// property.
Console.WriteLine("Message.AuthenticationProviderName: {0}",
orderMessage.AuthenticationProviderName);
注釈
クラスの Message プロパティはAuthenticationProviderName、メッセージのデジタル署名の生成に使用される暗号化プロバイダーの名前を指定します。 Message.AuthenticationProviderName は通常、外部キューを操作するときに使用されます。
外部キューは、Microsoft メッセージ キュー以外のキュー システムに存在します。 Microsoft メッセージ キューは、コネクタ アプリケーションを介してこのようなキューと通信します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET