NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IRemotingFormatter.Serialize

Starts the process of serialization. The object graph commencing at graph will be serialized to the appropriate backing store.

[Visual Basic]
Sub Serialize( _
   ByVal serializationStream As Stream, _
   ByVal graph As Object, _
   ByVal headers() As Header _
)
[C#]
void Serialize(
   Stream serializationStream,
   object graph,
   Header[] headers
);
[C++]
void Serialize(
   Stream* serializationStream,
   Object* graph,
   Header* headers[]
) = 0;
[JScript]
function Serialize(
   serializationStream : Stream,
   graph : Object,
   headers : Header[]
);

Parameters

serializationStream
[To be supplied.]
graph
The root of the object graph to be serialized.
headers
The array of headers to be transmitted along with this graph. This parameter may be null. See the SOAP specification for more details on valid headers.

See Also

IRemotingFormatter Interface | IRemotingFormatter Members | System.Runtime.Remoting Namespace