C# Class TagLib.Id3v2.ExtendedHeader

Afficher le fichier Open project: anyoun/metageta Class Usage Examples

Méthodes publiques

Méthode Description
Clone ( ) : ExtendedHeader

Creates a deep copy of the current instance.

ExtendedHeader ( ) : System

Constructs and initializes a new instance of with no contents.

ExtendedHeader ( ByteVector data, byte version ) : System

Constructs and initializes a new instance of by reading the raw contents from a ByteVector object.

Méthodes protégées

Méthode Description
Parse ( ByteVector data, byte version ) : void

Populates the current instance with the contents of the raw ID3v2 frame.

Private Methods

Méthode Description
ICloneable ( ) : object

Method Details

Clone() public méthode

Creates a deep copy of the current instance.
public Clone ( ) : ExtendedHeader
Résultat ExtendedHeader

ExtendedHeader() public méthode

Constructs and initializes a new instance of with no contents.
public ExtendedHeader ( ) : System
Résultat System

ExtendedHeader() public méthode

Constructs and initializes a new instance of by reading the raw contents from a ByteVector object.
public ExtendedHeader ( ByteVector data, byte version ) : System
data ByteVector /// A object containing the raw /// extended header structure. ///
version byte /// A value indicating the ID3v2 version. ///
Résultat System

Parse() protected méthode

Populates the current instance with the contents of the raw ID3v2 frame.
protected Parse ( ByteVector data, byte version ) : void
data ByteVector /// A object containing the raw /// extended header structure. ///
version byte /// A value indicating the ID3v2 version. ///
Résultat void