Compartilhar via


MessagePropertyFilter.AuthenticationProviderName Propriedade

Definição

Obtém ou define um valor que indica se é necessário recuperar informações de propriedade de AuthenticationProviderName ao receber ou espiar uma mensagem.

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

Valor da propriedade

true para receber AuthenticationProviderName informações; caso contrário, false. O padrão é false.

Atributos

Exemplos

O exemplo de código a seguir demonstra o uso da AuthenticationProviderName propriedade .

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

Comentários

A AuthenticationProviderName propriedade da Message classe especifica o nome do provedor criptográfico usado para gerar a assinatura digital da mensagem. Message.AuthenticationProviderName normalmente é usado ao trabalhar com filas estrangeiras.

Existe uma fila estrangeira em um sistema de enfileiramento diferente do Enfileiramento de Mensagens da Microsoft. O Enfileiramento de Mensagens da Microsoft se comunica com essas filas por meio de um aplicativo conector.

Aplica-se a

Confira também