Method | Description | |
---|---|---|
Close ( ) : void |
Closes this Filter and the underlying stream. If you override, call up to this method in your implementation. |
|
Flush ( ) : void |
Fluses this Filter and the underlying stream. If you override, call up to this method in your implementation. |
|
Read ( byte buffer, int offset, int count ) : int |
Not supported.
|
|
Seek ( long offset, SeekOrigin direction ) : long |
Not supported. Throws an exception saying so.
|
|
SetLength ( long length ) : void |
Not supported. Throws an exception saying so.
|
Method | Description | |
---|---|---|
HttpOutputFilter ( Stream baseStream ) : System |
Subclasses need to call this on contruction to setup the underlying stream
|
protected HttpOutputFilter ( Stream baseStream ) : System | ||
baseStream | Stream | The stream we're wrapping up in a filter |
return | System |
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | The buffer to write into. |
offset | int | The offset on the buffer to write into |
count | int | The number of bytes to write. Must be less than buffer.Length |
return | int |
public Seek ( long offset, SeekOrigin direction ) : long | ||
offset | long | |
direction | SeekOrigin | |
return | long |