Метод | Описание | |
---|---|---|
BeginRead ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult |
Begins an asynchronous read operation.
|
|
BeginWrite ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult |
Begins an asynchronous write operation.
|
|
Close ( ) : void |
Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream.
|
|
EndRead ( IAsyncResult asyncResult ) : int |
Waits for the pending asynchronous read to complete.
|
|
EndWrite ( IAsyncResult asyncResult ) : void |
Ends an asynchronous write operation.
|
|
Flush ( ) : void |
When overridden in a derived class, clears all buffers for this stream and causes any buffered data to be written to the underlying device.
|
|
Read ( byte buffer, int offset, int count ) : int |
When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
|
|
ReadByte ( ) : int | ||
Seek ( long offset, SeekOrigin origin ) : long |
When overridden in a derived class, sets the position within the current stream.
|
|
SetLength ( long value ) : void |
When overridden in a derived class, sets the length of the current stream.
|
|
ToString ( ) : string |
Returns a
|
|
Write ( byte buffer, int offset, int count ) : void |
When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
|
|
WriteByte ( byte value ) : void |
Writes a byte to the current position in the stream and advances the position within the stream by one byte.
|
Метод | Описание | |
---|---|---|
SetStream ( Stream stream ) : void |
Sets the stream that shall be decorated.
|
|
StreamDecoratorStream ( Stream decoratedStream ) : System |
Initializes a new instance of the StreamDecoratorStream class.
|
|
ThrowNoStreamException ( ) : void |
Derived classes can override this method to handle cases where a method is called while the decorated device is not assigned.
|
Метод | Описание | |
---|---|---|
AssertStreamNotNull ( ) : void |
Asserts the stream is not null.
|
public BeginRead ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult | ||
buffer | byte | The buffer to read the data into. |
offset | int | The byte offset in buffer at which to begin writing data read from the stream. |
count | int | The maximum number of bytes to read. |
callback | AsyncCallback | An optional asynchronous callback, to be called when the read is complete. |
state | object | A user-provided object that distinguishes this particular asynchronous read request /// from other requests. |
Результат | IAsyncResult |
public BeginWrite ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult | ||
buffer | byte | The buffer to write data from. |
offset | int | The byte offset in buffer from which to begin writing. |
count | int | The maximum number of bytes to write. |
callback | AsyncCallback | An optional asynchronous callback, to be called when the write is complete. |
state | object | A user-provided object that distinguishes this particular asynchronous write request /// from other requests. |
Результат | IAsyncResult |
public EndRead ( IAsyncResult asyncResult ) : int | ||
asyncResult | IAsyncResult | The reference to the pending asynchronous request to finish. |
Результат | int |
public EndWrite ( IAsyncResult asyncResult ) : void | ||
asyncResult | IAsyncResult | A reference to the outstanding asynchronous I/O request. |
Результат | void |
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | An array of bytes. When this method returns, the buffer contains the specified byte /// array with the values between offset and (offset + count - 1) replaced by the bytes read from the current /// source. |
offset | int | The zero-based byte offset in buffer at which to begin storing the data read from /// the current stream. |
count | int | The maximum number of bytes to be read from the current stream. |
Результат | int |
public Seek ( long offset, SeekOrigin origin ) : long | ||
offset | long | A byte offset relative to the origin parameter. |
origin | SeekOrigin | A value of type |
Результат | long |
public SetLength ( long value ) : void | ||
value | long | The desired length of the current stream in bytes. |
Результат | void |
protected SetStream ( Stream stream ) : void | ||
stream | Stream | The stream that shall be decorated. |
Результат | void |
protected StreamDecoratorStream ( Stream decoratedStream ) : System | ||
decoratedStream | Stream | The decorated stream. |
Результат | System |
protected ThrowNoStreamException ( ) : void | ||
Результат | void |
public Write ( byte buffer, int offset, int count ) : void | ||
buffer | byte | An array of bytes. This method copies count bytes from buffer to the current stream. /// |
offset | int | The zero-based byte offset in buffer at which to begin copying bytes to the current /// stream. |
count | int | The number of bytes to be written to the current stream. |
Результат | void |
public WriteByte ( byte value ) : void | ||
value | byte | The byte to write to the stream. |
Результат | void |