MessageQueueInstaller.Authenticate Propriedade
Definição
Obtém ou define um valor que indica se a fila a ser instalado aceita apenas mensagens autenticadas.Gets or sets a value that indicates whether the queue to be installed accepts only authenticated messages.
public:
property bool Authenticate { bool get(); void set(bool value); };
public bool Authenticate { get; set; }
member this.Authenticate : bool with get, set
Public Property Authenticate As Boolean
Valor da propriedade
true se a fila aceita apenas mensagens autenticadas; caso contrário, false.true if the queue accepts only authenticated messages; otherwise, false. O padrão é false.The default is false.
Comentários
Quando uma mensagem não autenticada é enviada para uma fila que aceita somente mensagens autenticadas, a mensagem é rejeitada.When a non-authenticated message is sent to a queue that accepts only authenticated messages, the message is rejected. O aplicativo de envio pode solicitar a notificação de uma rejeição de mensagem definindo o AcknowledgeType para a mensagem.The sending application can request notification of a message rejection by setting the AcknowledgeType for the message. Caso contrário, não há nenhuma indicação de que a mensagem foi rejeitada, portanto, a mensagem pode ser perdida, a menos que você a envie para a fila de mensagens mortas.Otherwise, there is no indication that the message was rejected, so the message can be lost unless you send it to the dead-letter queue.