Aracılığıyla paylaş


MessagePropertyFilter.AuthenticationProviderName Özellik

Tanım

İletiyi alırken veya göz atırken özellik bilgilerinin alınıp alınmayacağını AuthenticationProviderName belirten bir değer alır veya ayarlar.

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

Özellik Değeri

true bilgi almak AuthenticationProviderName için; aksi takdirde , false. Varsayılan değer: false.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğinin AuthenticationProviderName kullanımını gösterir.

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

Açıklamalar

AuthenticationProviderName sınıfının özelliğiMessage, iletinin dijital imzasını oluşturmak için kullanılan şifreleme sağlayıcısının adını belirtir. Message.AuthenticationProviderName genellikle yabancı kuyruklarla çalışırken kullanılır.

Microsoft Message Queuing dışında bir kuyruğa alma sisteminde yabancı bir kuyruk var. Microsoft Message Queuing, bir bağlayıcı uygulaması aracılığıyla bu tür kuyruklarla iletişim kurar.

Şunlara uygulanır

Ayrıca bkz.