C# Class FlacLibSharp.MetadataBlockHeader

A metadata block header.
Afficher le fichier Open project: AaronLenoir/flaclibsharp Class Usage Examples

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
ParseData ( byte data ) : void

Interprets the meta data block header.

Method Details

MetadataBlockHeader() public méthode

public MetadataBlockHeader ( ) : System
Résultat System

MetadataBlockHeader() public méthode

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

ParseData() protected méthode

Interprets the meta data block header.
protected ParseData ( byte data ) : void
data byte
Résultat void

WriteHeaderData() public méthode

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.
Résultat void