Message.Authenticated Property

Definition

Gets a value that indicates whether the message was authenticated.

public:
 property bool Authenticated { bool get(); };
[System.Messaging.MessagingDescription("MsgAuthenticated")]
public bool Authenticated { get; }
[<System.Messaging.MessagingDescription("MsgAuthenticated")>]
member this.Authenticated : bool
Public ReadOnly Property Authenticated As Boolean

Property Value

true if authentication was requested for the message when it entered the queue; otherwise, false.

Attributes

Exceptions

The message has not been sent. This property can only be read on messages retrieved from a queue.

-or-

The message queue is filtered to ignore the Authenticated property.

Examples

The following code example displays the value of a message's Authenticated property.

Remarks

The Authenticated property is used only by the application while it is interacting with the message and trying to determine if authentication was requested. If the message is in the queue, the message was authenticated. Conversely, if the Authenticated property is true, the receiving Queue Manager authenticated the message when it received that message.

You cannot determine if a message failed authentication by looking at its properties. Message Queuing discards messages that fail authentication before they are delivered to the queue. However, you can request that an acknowledgment message be sent if a delivery failure prevents the message from arriving in the queue.

Applies to

See also