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!

BufferedStream.WriteByte

Writes a byte to the current position in the buffered 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
A byte to write to the stream.

Exceptions

Exception Type Condition
IOException The stream is closed.
NotSupportedException The stream does not support writing.

Remarks

Writes a byte to a buffered stream efficiently. If the stream is closed or not writable, an exception will be thrown.

See Also

BufferedStream Class | BufferedStream Members | System.IO Namespace