C# Class TagLib.Id3v2.ExtendedHeader

Mostra file Open project: anyoun/metageta Class Usage Examples

Public Methods

Method 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.

Protected Methods

Method Description
Parse ( ByteVector data, byte version ) : void

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

Private Methods

Method Description
ICloneable ( ) : object

Method Details

Clone() public method

Creates a deep copy of the current instance.
public Clone ( ) : ExtendedHeader
return ExtendedHeader

ExtendedHeader() public method

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

ExtendedHeader() public method

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. ///
return System

Parse() protected method

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. ///
return void