C# 클래스 TagLib.Id3v2.UserUrlLinkFrame

This class extends UrlLinkFrame to provide support for ID3v2 User Url Link (WXXX) Frames.
상속: UrlLinkFrame
파일 보기 프로젝트 열기: mono/taglib-sharp 1 사용 예제들

공개 메소드들

메소드 설명
Get ( Tag tag, string description, StringType type, bool create ) : UserUrlLinkFrame

Gets a specified user text frame from the specified tag, optionally creating it if it does not exist.

Get ( Tag tag, string description, bool create ) : UserUrlLinkFrame

Gets a specified user text frame from the specified tag, optionally creating it if it does not exist.

ToString ( ) : string

Gets a string representation of the current instance.

UserUrlLinkFrame ( ByteVector data, byte version ) : System

Constructs and initializes a new instance of UserUrlLinkFrame by reading its raw data in a specified ID3v2 version.

UserUrlLinkFrame ( string description ) : System

Constructs and initializes a new instance of UserUrlLinkFrame with a specified description.

When a frame is created, it is not automatically added to the tag. Consider using Get(Tag,string,bool) for more integrated frame creation.

UserUrlLinkFrame ( string description, StringType encoding ) : System

Constructs and initializes a new instance of UserUrlLinkFrame with a specified description and text encoding.

When a frame is created, it is not automatically added to the tag. Consider using Get(Tag,string,StringType,bool) for more integrated frame creation.

보호된 메소드들

메소드 설명
UserUrlLinkFrame ( ByteVector data, int offset, TagLib.Id3v2.FrameHeader header, byte version ) : System

Constructs and initializes a new instance of UserUrlLinkFrame by reading its raw data in a specified ID3v2 version.

메소드 상세

Get() 공개 정적인 메소드

Gets a specified user text frame from the specified tag, optionally creating it if it does not exist.
public static Get ( Tag tag, string description, StringType type, bool create ) : UserUrlLinkFrame
tag Tag /// A object to search in. ///
description string /// A specifying the description to /// match. ///
type StringType /// A specifying the encoding to /// use if creating a new frame. ///
create bool /// A specifying whether or not to create /// and add a new frame to the tag if a match is not found. ///
리턴 UserUrlLinkFrame

Get() 공개 정적인 메소드

Gets a specified user text frame from the specified tag, optionally creating it if it does not exist.
public static Get ( Tag tag, string description, bool create ) : UserUrlLinkFrame
tag Tag /// A object to search in. ///
description string /// A specifying the description to /// match. ///
create bool /// A specifying whether or not to create /// and add a new frame to the tag if a match is not found. ///
리턴 UserUrlLinkFrame

ToString() 공개 메소드

Gets a string representation of the current instance.
public ToString ( ) : string
리턴 string

UserUrlLinkFrame() 공개 메소드

Constructs and initializes a new instance of UserUrlLinkFrame by reading its raw data in a specified ID3v2 version.
public UserUrlLinkFrame ( ByteVector data, byte version ) : System
data ByteVector /// A object starting with the raw /// representation of the new frame. ///
version byte /// A indicating the ID3v2 version the /// raw frame is encoded in. ///
리턴 System

UserUrlLinkFrame() 보호된 메소드

Constructs and initializes a new instance of UserUrlLinkFrame by reading its raw data in a specified ID3v2 version.
protected UserUrlLinkFrame ( ByteVector data, int offset, TagLib.Id3v2.FrameHeader header, byte version ) : System
data ByteVector /// A object containing the raw /// representation of the new frame. ///
offset int /// A indicating at what offset in /// the frame actually begins. ///
header TagLib.Id3v2.FrameHeader /// A containing the header of the /// frame found at in the data. ///
version byte /// A indicating the ID3v2 version the /// raw frame is encoded in. ///
리턴 System

UserUrlLinkFrame() 공개 메소드

Constructs and initializes a new instance of UserUrlLinkFrame with a specified description.
When a frame is created, it is not automatically added to the tag. Consider using Get(Tag,string,bool) for more integrated frame creation.
public UserUrlLinkFrame ( string description ) : System
description string /// A containing the description of the /// new frame. ///
리턴 System

UserUrlLinkFrame() 공개 메소드

Constructs and initializes a new instance of UserUrlLinkFrame with a specified description and text encoding.
When a frame is created, it is not automatically added to the tag. Consider using Get(Tag,string,StringType,bool) for more integrated frame creation.
public UserUrlLinkFrame ( string description, StringType encoding ) : System
description string /// A containing the description of the /// new frame. ///
encoding StringType /// A containing the text encoding /// to use when rendering the new frame. ///
리턴 System