Message.AttachSenderId Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether the sender ID should be attached to the message.
public:
property bool AttachSenderId { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgAttachSenderId")]
public bool AttachSenderId { get; set; }
[<System.Messaging.MessagingDescription("MsgAttachSenderId")>]
member this.AttachSenderId : bool with get, set
Public Property AttachSenderId As Boolean
Property Value
true
if the SenderId should be attached to the message; otherwise, false
. The default is true
.
- Attributes
Exceptions
The message queue is filtered to ignore the AttachSenderId property.
Examples
The following code example gets and sets the value of a message's AttachSenderId property.
Remarks
The SenderId property is an array of bytes that represents the identifier of the sending user. The sender ID is set by Message Queuing and is used by the receiving Queue Manager to verify whether the sender has access rights to a queue.
The absence of the sender ID is an indication by the sending application that Message Queuing should not validate the message's sender nor verify the sender's access rights to the receiving queue. The SenderId is trustworthy only if the message was authenticated when it reached the destination queue. The message is rejected when it reaches the destination queue if the queue accepts only authenticated messages and either the UseAuthentication or the AttachSenderId property is false
.
Caution
If a message is rejected, it is either sent to the dead-letter queue (if UseDeadLetterQueue is true
), or it is ignored. You can request acknowledgments when a message fails to reach a queue. Otherwise, when UseDeadLetterQueue is false
the message might be lost without warning.