Method | Description | |
---|---|---|
ChunkedStream ( int chunkSize, Action |
Initializes a new instance of the ChunkedStream class.
|
|
Close ( ) : void |
Closes the current stream and releases all resources.
|
|
Flush ( ) : void |
Overrides Stream.Flush so that no action is performed.
|
|
Read ( byte buffer, int offset, int count ) : int |
This method is not supported.
|
|
Seek ( long offset, SeekOrigin origin ) : long |
This method is not supported.
|
|
SetLength ( long value ) : void |
This method is not supported.
|
|
Write ( byte buffer, int offset, int count ) : void |
Writes a block of bytes to the current stream using data read from a buffer.
|
Method | Description | |
---|---|---|
SendChunks ( ) : void |
public ChunkedStream ( int chunkSize, Action |
||
chunkSize | int | The chunk size. |
chunkReadyAction | Action |
The |
return | System |
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | The buffer. |
offset | int | The offset. |
count | int | The count. |
return | int |
public Seek ( long offset, SeekOrigin origin ) : long | ||
offset | long | The offset. |
origin | SeekOrigin | The origin. |
return | long |
public Write ( byte buffer, int offset, int count ) : void | ||
buffer | byte | The buffer to write data from. |
offset | int | The zero-based byte offset in |
count | int | The maximum number of bytes to write. |
return | void |