Метод | Описание | |
---|---|---|
Close ( ) : void |
Close the stream
|
|
Flush ( ) : void |
Flush the data into the underlying stream
|
|
PlaceholderStream ( Stream innerStream ) : System |
Initialization constructor
|
|
PlaceholderStream ( Stream innerStream, bool leaveInnerStreamOpen ) : System |
Initialization constructor
|
|
Read ( byte buffer, int offset, int count ) : int |
Read the data from the stream
|
|
ReadAsync ( byte buffer, int offset, int count, |
||
Seek ( long offset, SeekOrigin origin ) : long |
Seek position in the stream
|
|
SetLength ( long value ) : void |
Set stream length
|
|
Write ( byte buffer, int offset, int count ) : void |
Write data into the stream
|
|
WriteAsync ( byte buffer, int offset, int count, |
public PlaceholderStream ( Stream innerStream ) : System | ||
innerStream | Stream | |
Результат | System |
public PlaceholderStream ( Stream innerStream, bool leaveInnerStreamOpen ) : System | ||
innerStream | Stream | |
leaveInnerStreamOpen | bool | |
Результат | System |
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | |
offset | int | |
count | int | |
Результат | int |
public ReadAsync ( byte buffer, int offset, int count, |
||
buffer | byte | |
offset | int | |
count | int | |
cancellationToken | ||
Результат | Task |
public Seek ( long offset, SeekOrigin origin ) : long | ||
offset | long | |
origin | SeekOrigin | |
Результат | long |
public Write ( byte buffer, int offset, int count ) : void | ||
buffer | byte | |
offset | int | |
count | int | |
Результат | void |
public WriteAsync ( byte buffer, int offset, int count, |
||
buffer | byte | |
offset | int | |
count | int | |
cancellationToken | ||
Результат | Task |