Method | Description | |
---|---|---|
ProgressStream ( Stream stream ) : System |
Initializes a new instance of the CmisSync.Lib.Streams.ProgressStream class. The given transmission event will be used to report the progress
|
|
Read ( byte buffer, int offset, int count ) : int |
Read the specified buffer, offset and count.
|
|
Seek ( long offset, SeekOrigin origin ) : long |
Seek the specified offset and origin.
|
|
SetLength ( long value ) : void |
Sets the length.
|
|
Write ( byte buffer, int offset, int count ) : void |
Write the specified buffer, offset and count.
|
public ProgressStream ( Stream stream ) : System | ||
stream | Stream | /// Stream which progress should be monitored. /// |
return | System |
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | /// Buffer. /// |
offset | int | /// Offset. /// |
count | int | /// Count. /// |
return | int |
public Seek ( long offset, SeekOrigin origin ) : long | ||
offset | long | /// Offset. /// |
origin | SeekOrigin | /// Origin. /// |
return | long |
public SetLength ( long value ) : void | ||
value | long | /// Value. /// |
return | void |
public Write ( byte buffer, int offset, int count ) : void | ||
buffer | byte | /// Buffer. /// |
offset | int | /// Offset. /// |
count | int | /// Count. /// |
return | void |