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

When overidden in a derived class, writes a 64-bit signed integer to the stream.

[Visual Basic]
MustOverride Protected Sub WriteInt64( _
   ByVal val As Long, _
   ByVal name As String _
)
[C#]
protected abstract void WriteInt64(
   long val,
   string name
);
[C++]
protected: virtual void WriteInt64(
   __int64 val,
   String* name
) = 0;
[JScript]
protected abstract function WriteInt64(
   val : long,
   name : String
);

Parameters

val
The value to be written.
name
The name of the member.

See Also

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