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!

MemoryStream.WriteByte

Writes a byte to the current stream.

[Visual Basic]
Overrides Public Sub WriteByte( _
   ByVal value As Byte _
)
[C#]
public override void WriteByte(
   byte value
);
[C++]
public: override void WriteByte(
   unsigned char value
);
[JScript]
public override function WriteByte(
   value : Byte
);

Parameters

value
The byte to write.

See Also

MemoryStream Class | MemoryStream Members | System.IO Namespace