MessagePropertyFilter.HashAlgorithm Propriedade

Definição

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

public:
 property bool HashAlgorithm { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgHashAlgorithm")]
public bool HashAlgorithm { get; set; }
[<System.Messaging.MessagingDescription("MsgHashAlgorithm")>]
member this.HashAlgorithm : bool with get, set
Public Property HashAlgorithm As Boolean

Valor da propriedade

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

Atributos

Exemplos

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

// Set the queue's MessageReadPropertyFilter property 
// to enable the message's HashAlgorithm property.
queue->MessageReadPropertyFilter->HashAlgorithm = 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 
// HashAlgorithm property.
Console::WriteLine("Message.HashAlgorithm: {0}", 
    orderMessage->HashAlgorithm);
// Set the queue's MessageReadPropertyFilter property to enable the
// message's HashAlgorithm property.
queue.MessageReadPropertyFilter.HashAlgorithm = 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 HashAlgorithm property.
Console.WriteLine("Message.HashAlgorithm: {0}",
    orderMessage.HashAlgorithm);

Comentários

A HashAlgorithm propriedade da Message classe identifica o algoritmo de hash que o Enfileiramento de Mensagens usa ao autenticar mensagens. O algoritmo de hash também é usado ao criar uma assinatura digital para uma mensagem.

Aplica-se a

Confira também