C# Class PeerCastStation.Core.RingbufferStream

Inheritance: System.IO.Stream
Datei anzeigen Open project: kumaryu/peercaststation Class Usage Examples

Public Methods

Method Description
Flush ( ) : void
GetBuffer ( ) : byte[]
Read ( byte buffer, int offset, int count ) : int
RingbufferStream ( int capacity ) : System
Seek ( long offset, System origin ) : long
SetLength ( long value ) : void
Write ( byte buffer, int offset, int count ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

Dispose() protected method

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

Flush() public method

public Flush ( ) : void
return void

GetBuffer() public method

public GetBuffer ( ) : byte[]
return byte[]

Read() public method

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

RingbufferStream() public method

public RingbufferStream ( int capacity ) : System
capacity int
return System

Seek() public method

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

SetLength() public method

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

Write() public method

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