C# 클래스 TagLib.Properties

This class implements IAudioCodec and and combines codecs to create generic media properties for a file.
상속: IAudioCodec, IVideoCodec
파일 보기 프로젝트 열기: secred/Tachycardia 1 사용 예제들

공개 메소드들

메소드 설명
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