C# Class Streams.ConcatStream

Inheritance: System.IO.ReadOnlyStream
Show file Open project: jamesfoster/Streams

Public Properties

Property Type Description
InnerStreams Stream[]

Public Methods

Method Description
ConcatStream ( ) : System
ConcatStream ( IEnumerable streams ) : System
Flush ( ) : void
Init ( Stream streams ) : void
Read ( byte buffer, int offset, int count ) : int

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

ConcatStream() public method

public ConcatStream ( ) : System
return System

ConcatStream() public method

public ConcatStream ( IEnumerable streams ) : System
streams IEnumerable
return System

Dispose() protected method

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

Flush() public method

public Flush ( ) : void
return void

Init() public method

public Init ( Stream streams ) : void
streams Stream
return void

Read() public method

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

Property Details

InnerStreams public property

public Stream[] InnerStreams
return Stream[]