BufferedWriter Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released.
A buffered writer for a Stream
public class BufferedWriter : IDisposable
- Inheritance
-
BufferedWriter
- Implements
Constructors
BufferedWriter(Stream, Int32) |
Creates a new BufferedWriter instance |
Fields
MaxStringLength |
Max length for a String |
OutputStream |
Output Stream |
Properties
HasDisposed |
Has this object been disposed |
Length |
The length of the buffer |
OutputStreamPosition |
You may need to override this if your Stream requires it |
Position |
The current position of the buffer |
Methods
Dispose() |
Disposes of this BufferedWriter instance This method SHOULD NOT be used! VoltRpc will dispose of this object when it is done with it! NOTE: This disposal method will NOT call Dispose() on the underlying OutputStream |
Finalize() |
Destructor for this object |
Reset() |
Reset position |
WriteByte(Byte) |
Writes a Byte |
WriteBytes(Byte[], Int32, Int32) |
Writes an array of Bytes |
WriteString(String) |
Writes a String |