XsBufferedFileStream.WriteByte Method | |
Writes a byte to the current position in the file stream.
Namespace:
XSharp.IO
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.21
Syntax VIRTUAL METHOD WriteByte(
b AS BYTE
) AS VOID
public override void WriteByte(
byte b
)
Request Example
View SourceParameters
- b
- Type: Byte
Exceptions Exception | Condition |
---|
ObjectDisposedException | The stream is closed. |
NotSupportedException | The stream does not support writing. |
Remarks This method overrides the normal behavior of the FileStream class and writed the data to an inmemory cache, when possible
See Also