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!

Formatter.WriteMember

Inspects the type of data received, and calls the appropriate WriteXXX method to perform the actual write to the stream already attached to the formatter.

[Visual Basic]
Overridable Protected Sub WriteMember( _
   ByVal memberName As String, _
   ByVal data As Object _
)
[C#]
protected virtual void WriteMember(
   string memberName,
   object data
);
[C++]
protected: virtual void WriteMember(
   String* memberName,
   Object* data
);
[JScript]
protected function WriteMember(
   memberName : String,
   data : Object
);

Parameters

memberName
the name of the member
data
the object to be streamed

See Also

Formatter Class | Formatter Members | System.Runtime.Serialization Namespace