Method | Description | |
---|---|---|
Flush ( ) : void | ||
Read ( byte buffer, int offset, int count ) : int | ||
ResponseReader ( Stream stream ) : System | ||
Seek ( long offset, SeekOrigin origin ) : long | ||
SetLength ( long value ) : void | ||
Write ( byte buffer, int offset, int count ) : void |
The overridden write converts the output to text and caches it in the ResponseString accessor. It finally converts that string back to an array of bytes and writes it back out to the wrapped stream
|
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | |
offset | int | |
count | int | |
return | int |
public ResponseReader ( Stream stream ) : System | ||
stream | Stream | |
return | System |
public Seek ( long offset, SeekOrigin origin ) : long | ||
offset | long | |
origin | SeekOrigin | |
return | long |
public Write ( byte buffer, int offset, int count ) : void | ||
buffer | byte | |
offset | int | |
count | int | |
return | void |