C# Class FlacLibSharp.MetadataBlockHeader

A metadata block header.
Show file Open project: AaronLenoir/flaclibsharp Class Usage Examples

Public Methods

Method Description
MetadataBlockHeader ( ) : System
MetadataBlockHeader ( byte data ) : System

Creates a new metadata block header from the provided data.

WriteHeaderData ( Stream targetStream ) : void

Will write the data representing this header (as it is stored in the FLAC file) to the given stream.

Protected Methods

Method Description
ParseData ( byte data ) : void

Interprets the meta data block header.

Method Details

MetadataBlockHeader() public method

public MetadataBlockHeader ( ) : System
return System

MetadataBlockHeader() public method

Creates a new metadata block header from the provided data.
public MetadataBlockHeader ( byte data ) : System
data byte
return System

ParseData() protected method

Interprets the meta data block header.
protected ParseData ( byte data ) : void
data byte
return void

WriteHeaderData() public method

Will write the data representing this header (as it is stored in the FLAC file) to the given stream.
public WriteHeaderData ( Stream targetStream ) : void
targetStream Stream The stream where the data will be written to.
return void