Initializes a new instance of the TuneInformation class.

Namespace: S22.Xmpp.Extensions
Assembly: S22.Xmpp (in S22.Xmpp.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public TuneInformation(
	string title = null,
	string artist = null,
	string track = null,
	int length = 0,
	int rating = 0,
	string source = null,
	string uri = null
)

Parameters

title (Optional)
Type: System..::..String
The title of the song or piece.
artist (Optional)
Type: System..::..String
The artist or performer of the song or piece.
track (Optional)
Type: System..::..String
A unique identifier for the tune; e.g., the track number within a collection.
length (Optional)
Type: System..::..Int32
The duration of the song or piece in seconds.
rating (Optional)
Type: System..::..Int32
The user's rating of the song or piece, from 1 (lowest) to 10 (highest).
source (Optional)
Type: System..::..String
The collection (e.g., album) or other source (e.g., a band website that hosts streams or audio files).
uri (Optional)
Type: System..::..String
A URI or URL pointing to information about the song, collection, or artist.

See Also