Method | Description | |
---|---|---|
BeginRead ( this stream, Byte buffer, AsyncCallback callback ) : IAsyncResult |
Extends BeginRead so that buffer offset of 0 and call to Array.Length are not needed.
|
|
BeginRead ( this stream, Byte buffer, AsyncCallback callback, Object state ) : IAsyncResult |
Extends BeginRead so that buffer offset of 0 and call to Array.Length are not needed.
|
|
BeginRead ( this stream, Byte buffer, |
Extends BeginRead so that when a state object is not needed, null does not need to be passed.
|
|
BeginWrite ( this stream, Byte buffer, AsyncCallback callback ) : IAsyncResult |
Extends BeginWrite so that buffer offset of 0 and call to Array.Length are not needed.
|
|
BeginWrite ( this stream, Byte buffer, AsyncCallback callback, Object state ) : IAsyncResult |
Extends BeginWrite so that buffer offset of 0 and call to Array.Length are not needed.
|
|
BeginWrite ( this stream, Byte buffer, |
Extends BeginWrite so that when a state object is not needed, null does not need to be passed.
|
|
Read ( this stream, Byte buffer ) : |
Extends Read so that buffer offset of 0 and call to Array.Length are not needed.
|
|
ReadAsync ( this stream, byte buffer ) : Task |
Extends ReadAsync so that buffer offset of 0 and call to Array.Length are not needed.
|
|
Seek ( this stream, SeekOrigin seekOrigin ) : long |
Seek with default offset of 0.
|
|
Write ( this stream, Byte buffer ) : void |
Extends Write so that buffer offset of 0 and call to Array.Length are not needed.
|
|
WriteAsync ( this stream, byte buffer ) : Task |
Extends WriteAsync so that buffer offset of 0 and call to Array.Length are not needed.
|
Method | Description | |
---|---|---|
BeginReadToEnd ( this stream, byte buffer, AsyncCallback callback ) : IAsyncResult | ||
BeginReadToEnd ( this stream, byte buffer, int offset, int count, AsyncCallback callback, Object state ) : IAsyncResult | ||
BeginReadToEnd ( this stream, byte buffer, int offset, int count, AsyncCallback callback ) : void | ||
EndReadToEnd ( this stream, IAsyncResult ar ) : int | ||
OnRead ( IAsyncResult ar ) : void |
public static BeginRead ( this stream, Byte buffer, AsyncCallback callback ) : IAsyncResult | ||
stream | this | |
buffer | Byte | |
callback | AsyncCallback | |
return | IAsyncResult |
public static BeginRead ( this stream, Byte buffer, AsyncCallback callback, Object state ) : IAsyncResult | ||
stream | this | |
buffer | Byte | |
callback | AsyncCallback | |
state | Object | |
return | IAsyncResult |
public static BeginRead ( this stream, Byte buffer, |
||
stream | this | |
buffer | Byte | |
offset | ||
count | ||
callback | AsyncCallback | |
return | IAsyncResult |
public static BeginWrite ( this stream, Byte buffer, AsyncCallback callback ) : IAsyncResult | ||
stream | this | |
buffer | Byte | |
callback | AsyncCallback | |
return | IAsyncResult |
public static BeginWrite ( this stream, Byte buffer, AsyncCallback callback, Object state ) : IAsyncResult | ||
stream | this | |
buffer | Byte | |
callback | AsyncCallback | |
state | Object | |
return | IAsyncResult |
public static BeginWrite ( this stream, Byte buffer, |
||
stream | this | |
buffer | Byte | |
offset | ||
count | ||
callback | AsyncCallback | |
return | IAsyncResult |
public static Read ( this stream, Byte buffer ) : |
||
stream | this | |
buffer | Byte | |
return |
public static ReadAsync ( this stream, byte buffer ) : Task |
||
stream | this | |
buffer | byte | |
return | Task |
public static Seek ( this stream, SeekOrigin seekOrigin ) : long | ||
stream | this | |
seekOrigin | SeekOrigin | |
return | long |
public static Write ( this stream, Byte buffer ) : void | ||
stream | this | |
buffer | Byte | |
return | void |
public static WriteAsync ( this stream, byte buffer ) : Task | ||
stream | this | |
buffer | byte | |
return | Task |