C# Class TagLib.Ogg.GroupedComment

This class combines a collection of XiphComment objects so that properties can be read from each but are only set to the first comment of the file.
Inheritance: Tag
Datei anzeigen Open project: MediaPortal/MPTagThat Class Usage Examples

Public Methods

Method Description
AddComment ( uint streamSerialNumber, ByteVector data ) : void

Adds a Xiph comment to the current instance.

AddComment ( uint streamSerialNumber, XiphComment comment ) : void

Adds a Xiph comment to the current instance.

Clear ( ) : void

Clears all of the child tags.

GetComment ( uint streamSerialNumber ) : XiphComment

Gets a comment in the current instance for a specified stream.

GroupedComment ( ) : System.Collections.Generic

Constructs and initializes a new instance of with now contents.

Method Details

AddComment() public method

Adds a Xiph comment to the current instance.
public AddComment ( uint streamSerialNumber, ByteVector data ) : void
streamSerialNumber uint /// A value containing the serial number /// of the stream containing the comment. ///
data ByteVector /// A object containing the raw Xiph /// comment to add to the current instance. ///
return void

AddComment() public method

Adds a Xiph comment to the current instance.
public AddComment ( uint streamSerialNumber, XiphComment comment ) : void
streamSerialNumber uint /// A value containing the serial number /// of the stream containing the comment. ///
comment XiphComment /// A object to add to the current /// instance. ///
return void

Clear() public method

Clears all of the child tags.
public Clear ( ) : void
return void

GetComment() public method

Gets a comment in the current instance for a specified stream.
public GetComment ( uint streamSerialNumber ) : XiphComment
streamSerialNumber uint /// A value containing the serial number /// of the stream of the comment to get. ///
return XiphComment

GroupedComment() public method

Constructs and initializes a new instance of with now contents.
public GroupedComment ( ) : System.Collections.Generic
return System.Collections.Generic