Message.SenderVersion Property

Definition

Gets the version of Message Queuing used to send the message.

public:
 property long SenderVersion { long get(); };
[System.Messaging.MessagingDescription("MsgSenderVersion")]
public long SenderVersion { get; }
[<System.Messaging.MessagingDescription("MsgSenderVersion")>]
member this.SenderVersion : int64
Public ReadOnly Property SenderVersion As Long

Property Value

The version of Message Queuing used to send the message.

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 SenderVersion property.

Examples

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

Remarks

The SenderVersion property is important for certain features. For example, transaction processing is supported only by Message Queuing 2.0 and later, and digital signatures are used to authenticate messages sent by MSMQ 1.0.

The sending Queue Manager sets the SenderVersion property when the message is sent.

Applies to

See also