Méthode | Description | |
---|---|---|
BeginRead ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult | ||
BeginWrite ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult | ||
Close ( ) : void | ||
EndRead ( IAsyncResult result ) : int | ||
EndWrite ( IAsyncResult result ) : void | ||
Flush ( ) : void | ||
Read ( byte buffer, int offset, int count ) : int | ||
ReadByte ( ) : int | ||
Seek ( long offset, SeekOrigin origin ) : long | ||
SetLength ( long value ) : void | ||
Write ( byte buffer, int offset, int count ) : void | ||
WriteByte ( byte value ) : void |
Méthode | Description | |
---|---|---|
DelegatingStream ( Stream stream ) : System | ||
ThrowIfNotCanWrite ( ) : void |
public BeginRead ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult | ||
buffer | byte | |
offset | int | |
count | int | |
callback | AsyncCallback | |
state | object | |
Résultat | IAsyncResult |
public BeginWrite ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult | ||
buffer | byte | |
offset | int | |
count | int | |
callback | AsyncCallback | |
state | object | |
Résultat | IAsyncResult |
protected DelegatingStream ( Stream stream ) : System | ||
stream | Stream | |
Résultat | System |
public EndRead ( IAsyncResult result ) : int | ||
result | IAsyncResult | |
Résultat | int |
public EndWrite ( IAsyncResult result ) : void | ||
result | IAsyncResult | |
Résultat | void |
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | |
offset | int | |
count | int | |
Résultat | int |
public Seek ( long offset, SeekOrigin origin ) : long | ||
offset | long | |
origin | SeekOrigin | |
Résultat | long |
public Write ( byte buffer, int offset, int count ) : void | ||
buffer | byte | |
offset | int | |
count | int | |
Résultat | void |