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

When overidden in a derived class, writes a value type to the stream already attached to the formatter.

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

Parameters

obj
The object representing the value type.
name
The name of the member.
memberType
The type of the value type.

See Also

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