StringFormatter.Write Method
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Opens a memory stream and writes the message object.
Namespace: Microsoft.SqlServer.Dts.Tasks.MessageQueueTask
Assembly: Microsoft.SqlServer.MSMQTask (in Microsoft.SqlServer.MSMQTask.dll)
Syntax
'Declaration
Public Sub Write ( _
msg As Message, _
obj As Object _
)
'Usage
Dim instance As StringFormatter
Dim msg As Message
Dim obj As Object
instance.Write(msg, obj)
public void Write(
Message msg,
Object obj
)
public:
virtual void Write(
Message^ msg,
Object^ obj
) sealed
abstract Write :
msg:Message *
obj:Object -> unit
override Write :
msg:Message *
obj:Object -> unit
public final function Write(
msg : Message,
obj : Object
)
Parameters
- msg
Type: System.Messaging.Message
The message objects to write.
- obj
Type: System.Object
The variable that the message object is in.
Implements
IMessageFormatter.Write(Message, Object)