C# Class TagLib.IFD.Entries.UserCommentIFDEntry

Contains an ASCII STRING value.
Inheritance: IFDEntry
Datei anzeigen Open project: rubenv/tripod

Public Properties

Property Type Description
COMMENT_ASCII_CODE ByteVector
COMMENT_JIS_CODE ByteVector
COMMENT_UNDEFINED_CODE ByteVector
COMMENT_UNICODE_CODE ByteVector

Public Methods

Method Description
Render ( bool is_bigendian, uint offset, ushort &type, uint &count ) : ByteVector

Renders the current instance to a ByteVector

UserCommentIFDEntry ( ushort tag, ByteVector data ) : System

Construcor.

UserCommentIFDEntry ( ushort tag, string value ) : System

Construcor.

Method Details

Render() public method

Renders the current instance to a ByteVector
public Render ( bool is_bigendian, uint offset, ushort &type, uint &count ) : ByteVector
is_bigendian bool /// A indicating the endianess for rendering. ///
offset uint /// A with the offset, the data is stored. ///
type ushort /// A the ID of the type, which is rendered ///
count uint /// A with the count of the values which are /// rendered. ///
return ByteVector

UserCommentIFDEntry() public method

Construcor.
public UserCommentIFDEntry ( ushort tag, ByteVector data ) : System
tag ushort /// A with the tag ID of the entry this instance /// represents ///
data ByteVector /// A to be stored ///
return System

UserCommentIFDEntry() public method

Construcor.
public UserCommentIFDEntry ( ushort tag, string value ) : System
tag ushort /// A with the tag ID of the entry this instance /// represents ///
value string /// A to be stored ///
return System

Property Details

COMMENT_ASCII_CODE public_oe static_oe property

Marker for an ASCII-encoded UserComment tag.
public static ByteVector COMMENT_ASCII_CODE
return ByteVector

COMMENT_JIS_CODE public_oe static_oe property

Marker for a JIS-encoded UserComment tag.
public static ByteVector COMMENT_JIS_CODE
return ByteVector

COMMENT_UNDEFINED_CODE public_oe static_oe property

Marker for a UserComment tag with undefined encoding.
public static ByteVector COMMENT_UNDEFINED_CODE
return ByteVector

COMMENT_UNICODE_CODE public_oe static_oe property

Marker for a UNICODE-encoded UserComment tag.
public static ByteVector COMMENT_UNICODE_CODE
return ByteVector