IRemotingFormatter.Serialize(Stream, Object, Header[]) Method
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.
Starts the serialization process of a remote procedure call (RPC).
public:
void Serialize(System::IO::Stream ^ serializationStream, System::Object ^ graph, cli::array <System::Runtime::Remoting::Messaging::Header ^> ^ headers);
public void Serialize (System.IO.Stream serializationStream, object graph, System.Runtime.Remoting.Messaging.Header[] headers);
abstract member Serialize : System.IO.Stream * obj * System.Runtime.Remoting.Messaging.Header[] -> unit
Public Sub Serialize (serializationStream As Stream, graph As Object, headers As Header())
Parameters
- graph
- Object
The root of the object graph to be serialized.
- headers
- Header[]
The array of Header objects to transmit with the graph specified by the graph
parameter. Can be null
.
Remarks
Header objects contain information about a remote function call (for example, transaction ID or a method signature).
Note
See the SOAP specification for more information on headers.