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!

BinaryWriter.Write (SByte)

Writes a signed byte to the current stream and advances the stream position by one byte.

[Visual Basic]
Overloads Public Sub Write( _
   ByVal value As SByte _
)
[C#]
public void Write(
   sbyte value
);
[C++]
public: void Write(
   char value
);
[JScript]
public function Write(
   value : SByte
);

Parameters

value
The signed byte to write.

Exceptions

Exception Type Condition
IOException An I/O error occurs.
ArgumentNullException value is a null reference (in Visual Basic Nothing).

See Also

BinaryWriter Class | BinaryWriter Members | System.IO Namespace | BinaryWriter.Write Overload List