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.WriteArray

When overidden in a derived class, writes an array to the stream already attached to the formatter.

[Visual Basic]
MustOverride Protected Sub WriteArray( _
   ByVal obj As Object, _
   ByVal name As String, _
   ByVal memberType As Type _
)
[C#]
protected abstract void WriteArray(
   object obj,
   string name,
   Type memberType
);
[C++]
protected: virtual void WriteArray(
   Object* obj,
   String* name,
   Type* memberType
) = 0;
[JScript]
protected abstract function WriteArray(
   obj : Object,
   name : String,
   memberType : Type
);

Parameters

obj
The array to be written.
name
The name of the array.
memberType
The type of elements that the array holds

See Also

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