C# Class LightNode.Server.UnclosableStream

Inheritance: Stream
显示文件 Open project: neuecc/LightNode

Public Methods

Method Description
CopyToAsync ( Stream destination, int bufferSize, System cancellationToken ) : System.Threading.Tasks.Task
Flush ( ) : void
FlushAsync ( System cancellationToken ) : System.Threading.Tasks.Task
Read ( byte buffer, int offset, int count ) : int
ReadAsync ( byte buffer, int offset, int count, System cancellationToken ) : Task
ReadByte ( ) : int
Seek ( long offset, SeekOrigin origin ) : long
SetLength ( long value ) : void
UnclosableStream ( Stream baseStream ) : System
Write ( byte buffer, int offset, int count ) : void
WriteAsync ( byte buffer, int offset, int count, System cancellationToken ) : System.Threading.Tasks.Task
WriteByte ( byte value ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

CopyToAsync() public method

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

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

Flush() public method

public Flush ( ) : void
return void

FlushAsync() public method

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

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 cancellationToken ) : Task
buffer byte
offset int
count int
cancellationToken System
return Task

ReadByte() public method

public ReadByte ( ) : int
return int

Seek() public method

public Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
return long

SetLength() public method

public SetLength ( long value ) : void
value long
return void

UnclosableStream() public method

public UnclosableStream ( Stream baseStream ) : System
baseStream Stream
return System

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 cancellationToken ) : System.Threading.Tasks.Task
buffer byte
offset int
count int
cancellationToken System
return System.Threading.Tasks.Task

WriteByte() public method

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