Method | Description | |
---|---|---|
Fill ( ReadCallback read, byte buffer, int offset, int count ) : void |
Repeatedly calls read until count bytes have been read into buffer.
|
|
TryFill ( ReadCallback read, byte buffer, int offset, int count ) : int |
Repeatedly calls read until count bytes have been read into buffer or the end of the stream has been reached.
|
Method | Description | |
---|---|---|
FillAsync ( ReadAsyncCallback read, byte buffer, int offset, int count, |
||
TryFillAsync ( ReadAsyncCallback read, byte buffer, int offset, int count, |
public static Fill ( ReadCallback read, byte buffer, int offset, int count ) : void | ||
read | ReadCallback | |
buffer | byte | |
offset | int | |
count | int | |
return | void |
public static TryFill ( ReadCallback read, byte buffer, int offset, int count ) : int | ||
read | ReadCallback | |
buffer | byte | |
offset | int | |
count | int | |
return | int |