C# Класс TagLib.Properties

This class implements IAudioCodec and and combines codecs to create generic media properties for a file.
Наследование: IAudioCodec, IVideoCodec
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

Properties() публичный Метод

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
Результат System

Properties() публичный Метод

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. ///
Результат System

Properties() публичный Метод

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. ///
Результат System