| TuneInformation Constructor |
Initializes a new instance of the TuneInformation class.
Namespace: Quickblox.Sdk.Modules.ChatXmppModule.ModelsAssembly: Quickblox.Sdk.Xamarin (in Quickblox.Sdk.Xamarin.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic TuneInformation(
string title = null,
string artist = null,
string track = null,
int length = 0,
int rating = 0,
string source = null,
string uri = null
)
Public Sub New (
Optional title As String = Nothing,
Optional artist As String = Nothing,
Optional track As String = Nothing,
Optional length As Integer = 0,
Optional rating As Integer = 0,
Optional source As String = Nothing,
Optional uri As String = Nothing
)
public:
TuneInformation(
String^ title = nullptr,
String^ artist = nullptr,
String^ track = nullptr,
int length = 0,
int rating = 0,
String^ source = nullptr,
String^ uri = nullptr
)
new :
?title : string *
?artist : string *
?track : string *
?length : int *
?rating : int *
?source : string *
?uri : string
(* Defaults:
let _title = defaultArg title null
let _artist = defaultArg artist null
let _track = defaultArg track null
let _length = defaultArg length 0
let _rating = defaultArg rating 0
let _source = defaultArg source null
let _uri = defaultArg uri null
*)
-> TuneInformationParameters
- title (Optional)
- Type: SystemString
The title of the song or piece. - artist (Optional)
- Type: SystemString
The artist or performer of the song or piece. - track (Optional)
- Type: SystemString
A unique identifier for the tune; e.g., the track
number within a collection. - length (Optional)
- Type: SystemInt32
The duration of the song or piece in
seconds. - rating (Optional)
- Type: SystemInt32
The user's rating of the song or piece, from
1 (lowest) to 10 (highest). - source (Optional)
- Type: SystemString
The collection (e.g., album) or other source
(e.g., a band website that hosts streams or audio files). - uri (Optional)
- Type: SystemString
A URI or URL pointing to information about the
song, collection, or artist.
See Also