C# Класс TagLib.Id3v2.UserUrlLinkFrame

This class extends UrlLinkFrame to provide support for ID3v2 User Url Link (WXXX) Frames.
Наследование: UrlLinkFrame
Показать файл Открыть проект Примеры использования класса

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

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