C# Class TagLib.IFD.Entries.StringIFDEntry

Contains an ASCII STRING value.
Inheritance: IFDEntry
显示文件 Open project: rubenv/tripod

Public Methods

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

Renders the current instance to a ByteVector

StringIFDEntry ( ushort tag, string value )

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

StringIFDEntry() public method

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