Метод | Описание | |
---|---|---|
Close ( ) : void | ||
PausableStream ( Stream s ) : System |
Initializes a new instance of the CmisSync.Lib.Streams.PausableStream class.
|
|
Pause ( ) : void |
Pause this stream until resume is called.
|
|
Read ( byte buffer, int offset, int count ) : int |
Read the specified buffer, offset and count.
|
|
Resume ( ) : void |
Resume this stream.
|
|
Write ( byte buffer, int offset, int count ) : void |
Write the specified buffer, offset and count.
|
public PausableStream ( Stream s ) : System | ||
s | Stream | Stream which should be wrapped and extended by the possibility to be paused on read or write by another thread. |
Результат | System |
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | /// Buffer. /// |
offset | int | /// Offset. /// |
count | int | /// Count. /// |
Результат | int |
public Write ( byte buffer, int offset, int count ) : void | ||
buffer | byte | /// Buffer. /// |
offset | int | /// Offset. /// |
count | int | /// Count. /// |
Результат | void |