Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets the version of the message.
Namespace: Microsoft.SqlServer.Dts.Tasks.MessageQueueTask
Assembly: Microsoft.SqlServer.MSMQTask (in Microsoft.SqlServer.MSMQTask.dll)
Syntax
'Declaration
Public Property DTSMessageVersionID As String
Get
Set
'Usage
Dim instance As MessageQueueTask
Dim value As String
value = instance.DTSMessageVersionID
instance.DTSMessageVersionID = value
public string DTSMessageVersionID { get; set; }
public:
virtual property String^ DTSMessageVersionID {
String^ get () sealed;
void set (String^ value) sealed;
}
abstract DTSMessageVersionID : string with get, set
override DTSMessageVersionID : string with get, set
final function get DTSMessageVersionID () : String
final function set DTSMessageVersionID (value : String)
Property Value
Type: System.String
A String that contains the version of the message.
Implements
IMessageQueueTask.DTSMessageVersionID
Examples
The following code example retreives the version ID of the task from a message queue task and puts it into msmqTask. The variable verUnknownMSMQTask is the Message Queue task whose version we are reviewing.
String taskMessageVersionID = verUnknownMSMQTask.DTSMessageVersionID;