C# Class OpenStack.IO.ProgressStream

This class operates as a wrapper around an underlying Stream instance which reports progress to an IProgress{T} instance.
Inheritance: DelegatingStream
显示文件 Open project: crowdy/OpenStack-ConoHa

Public Methods

Method Description
CopyToAsync ( System.IO.Stream destination, int bufferSize, System.Threading.CancellationToken cancellationToken ) : System.Threading.Tasks.Task
EndRead ( IAsyncResult asyncResult ) : int
EndWrite ( IAsyncResult asyncResult ) : void
FlushAsync ( System.Threading.CancellationToken cancellationToken ) : System.Threading.Tasks.Task
ProgressStream ( System.IO.Stream underlyingStream, IProgress progress ) : System

Initializes a new instance of the ProgressStream class from the specified Stream and IProgress{T} handler.

ProgressStream ( System.IO.Stream underlyingStream, IProgress progress, bool ownsStream ) : System

Initializes a new instance of the ProgressStream class from the specified Stream and IProgress{T} handler.

Read ( byte buffer, int offset, int count ) : int
ReadAsync ( byte buffer, int offset, int count, System.Threading.CancellationToken cancellationToken ) : Task
ReadByte ( ) : int
Seek ( long offset, System.IO.SeekOrigin origin ) : long
Write ( byte buffer, int offset, int count ) : void
WriteAsync ( byte buffer, int offset, int count, System.Threading.CancellationToken cancellationToken ) : System.Threading.Tasks.Task
WriteByte ( byte value ) : void

Method Details

CopyToAsync() public method

public CopyToAsync ( System.IO.Stream destination, int bufferSize, System.Threading.CancellationToken cancellationToken ) : System.Threading.Tasks.Task
destination System.IO.Stream
bufferSize int
cancellationToken System.Threading.CancellationToken
return System.Threading.Tasks.Task

EndRead() public method

public EndRead ( IAsyncResult asyncResult ) : int
asyncResult IAsyncResult
return int

EndWrite() public method

public EndWrite ( IAsyncResult asyncResult ) : void
asyncResult IAsyncResult
return void

FlushAsync() public method

public FlushAsync ( System.Threading.CancellationToken cancellationToken ) : System.Threading.Tasks.Task
cancellationToken System.Threading.CancellationToken
return System.Threading.Tasks.Task

ProgressStream() public method

Initializes a new instance of the ProgressStream class from the specified Stream and IProgress{T} handler.
/// If is . /// -or- /// If is . ///
public ProgressStream ( System.IO.Stream underlyingStream, IProgress progress ) : System
underlyingStream System.IO.Stream The stream to wrap.
progress IProgress The handler to report progress updates to.
return System

ProgressStream() public method

Initializes a new instance of the ProgressStream class from the specified Stream and IProgress{T} handler.
/// If is . /// -or- /// If is . ///
public ProgressStream ( System.IO.Stream underlyingStream, IProgress progress, bool ownsStream ) : System
underlyingStream System.IO.Stream The stream to wrap.
progress IProgress The handler to report progress updates to.
ownsStream bool /// if this object owns the wrapped stream, and should dispose /// of it when this instance is closed or disposed. /// -or- /// if this object should not dispose of the wrapped stream. /// The default value is . ///
return System

Read() public method

public Read ( byte buffer, int offset, int count ) : int
buffer byte
offset int
count int
return int

ReadAsync() public method

public ReadAsync ( byte buffer, int offset, int count, System.Threading.CancellationToken cancellationToken ) : Task
buffer byte
offset int
count int
cancellationToken System.Threading.CancellationToken
return Task

ReadByte() public method

public ReadByte ( ) : int
return int

Seek() public method

public Seek ( long offset, System.IO.SeekOrigin origin ) : long
offset long
origin System.IO.SeekOrigin
return long

Write() public method

public Write ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
return void

WriteAsync() public method

public WriteAsync ( byte buffer, int offset, int count, System.Threading.CancellationToken cancellationToken ) : System.Threading.Tasks.Task
buffer byte
offset int
count int
cancellationToken System.Threading.CancellationToken
return System.Threading.Tasks.Task

WriteByte() public method

public WriteByte ( byte value ) : void
value byte
return void