CreateOrUpdateMusicTrack Method

Soulstone

Soulstone
Create or update the Music Track info.

Namespace:  Soulstone.Data
Assembly:  Soulstone.Data (in Soulstone.Data.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public override void CreateOrUpdateMusicTrack(
	string hostName,
	string filePath,
	string album,
	string artist,
	string title,
	int year,
	string genre
)
Visual Basic (Declaration)
Public Overrides Sub CreateOrUpdateMusicTrack ( _
	hostName As String, _
	filePath As String, _
	album As String, _
	artist As String, _
	title As String, _
	year As Integer, _
	genre As String _
)
Visual C++
public:
virtual void CreateOrUpdateMusicTrack(
	String^ hostName, 
	String^ filePath, 
	String^ album, 
	String^ artist, 
	String^ title, 
	int year, 
	String^ genre
) override

Parameters

hostName
Type: System..::.String
The host name where the Music Track belongs.
filePath
Type: System..::.String
The path to the song.
album
Type: System..::.String
The album of the song.
artist
Type: System..::.String
The artist of the song.
title
Type: System..::.String
The title of the song.
year
Type: System..::.Int32
The year of the song.
genre
Type: System..::.String
The genre.

See Also