TagsEditor.ID3V2_URLFrameGet method |
|
Remarks
Obtains contents of a specific URL-based frame of the ID3V2 tag. Current contents can be modified through the TagsEditor.ID3V2_URLFrameSet method.
For further details about methods related to tags editing refer to the TagsEditorMan class.
For details about the editing of tags see the How to edit tag info in sound files tutorial.
Syntax
[Visual Basic] Public Function ID3V2_URLFrameGet ( strFrameId as string ) as String |
[C#] public string ID3V2_URLFrameGet ( string strFrameId ); |
[C++] public: string ID3V2_URLFrameGet ( string strFrameId ); |
Parameter |
Description |
|
|
strFrameId |
String containing the identifier of the specific frame to get. Supported identifiers for URL-based frames are the following: WCOM, WCOP, WOAF, WOAR, WOAS, WORS, WPAY, WPUB. Identifiers defined by version 2.2 of the ID3V2 tag format, which are based upon 3 characters instead of 4 characters, are supported as well. You can know if one of the frames above is available inside the ID3V2 tag by using the TagsEditor.ID3V2_FrameCountGet method. |
Return value
Value |
Meaning |
|
|
Empty string |
The information is not available or an error occurred (see the LastError property for further error details) |
Valid string |
String with the content of the requested frame |