BufferedWriter Class
Definition
A buffered writer for a System.IO.Stream
public class BufferedWriter : IDisposable
- Inheritance
- System.ObjectBufferedWriter
- Implements
- System.IDisposable
Constructors
BufferedWriter(Stream, Int32) | Creates a new BufferedWriter instance |
Fields
MaxStringLength | Max length for a System.String |
OutputStream | Output System.IO.Stream |
Properties
HasDisposed | Has this object been disposed |
Length | The length of the buffer |
OutputStreamPosition | You may need to override this if your System.IO.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 System.IO.Stream.Dispose on the underlying OutputStream |
Finalize() | Destructor for this object |
Reset() | Reset position |
WriteByte(Byte) | Writes a System.Byte |
WriteBytes(Byte[], Int32, Int32) | Writes an array of System.Bytes |
WriteString(String) | Writes a System.String |