C# Class TagLib.Properties

This class implements IAudioCodec and and combines codecs to create generic media properties for a file.
Inheritance: IAudioCodec, IVideoCodec
Exibir arquivo Open project: secred/Tachycardia Class Usage Examples

Public Methods

Method Description
Properties ( ) : System

Constructs and initializes a new instance of with no codecs or duration.

This constructor is used when media properties are not read.

Properties ( System.TimeSpan duration ) : System

Constructs and initializes a new instance of with a specified duration and array of codecs.

Properties ( System.TimeSpan duration, IEnumerable codecs ) : System

Constructs and initializes a new instance of with a specified duration and enumaration of codecs.

Method Details

Properties() public method

Constructs and initializes a new instance of with no codecs or duration.

This constructor is used when media properties are not read.

public Properties ( ) : System
return System

Properties() public method

Constructs and initializes a new instance of with a specified duration and array of codecs.
public Properties ( System.TimeSpan duration ) : System
duration System.TimeSpan /// A containing the duration of the /// media, or if the duration is /// to be read from the codecs. ///
return System

Properties() public method

Constructs and initializes a new instance of with a specified duration and enumaration of codecs.
public Properties ( System.TimeSpan duration, IEnumerable codecs ) : System
duration System.TimeSpan /// A containing the duration of the /// media, or if the duration is /// to be read from the codecs. ///
codecs IEnumerable /// A object containing the /// codec to be used in the new instance. ///
return System