C# Class LyricsEngine.org.lyricwiki.LyricWiki

Inheritance: System.Web.Services.Protocols.SoapHttpClientProtocol
ファイルを表示 Open project: MediaPortal/MPTagThat Class Usage Examples

Public Methods

Method Description
CancelAsync ( object userState ) : void
LyricWiki ( ) : System.Diagnostics
checkSongExistsAsync ( string artist, string song ) : void
checkSongExistsAsync ( string artist, string song, object userState ) : void
getAlbumAsync ( string artist, string album, int year ) : void
getAlbumAsync ( string artist, string album, int year, object userState ) : void
getArtistAsync ( string artist ) : void
getArtistAsync ( string artist, object userState ) : void
getHometownAsync ( string artist ) : void
getHometownAsync ( string artist, object userState ) : void
getSOTDAsync ( ) : void
getSOTDAsync ( object userState ) : void
getSongAsync ( string artist, string song ) : void
getSongAsync ( string artist, string song, object userState ) : void
getSongResultAsync ( string artist, string song ) : void
getSongResultAsync ( string artist, string song, object userState ) : void
postAlbumAsync ( bool overwriteIfExists, string artist, string album, int year, string asin, string songs ) : void
postAlbumAsync ( bool overwriteIfExists, string artist, string album, int year, string asin, string songs, object userState ) : void
postArtistAsync ( bool overwriteIfExists, string artist, string albums ) : void
postArtistAsync ( bool overwriteIfExists, string artist, string albums, object userState ) : void
postSongAsync ( bool overwriteIfExists, string artist, string song, string lyrics, string onAlbums ) : void
postSongAsync ( bool overwriteIfExists, string artist, string song, string lyrics, string onAlbums, object userState ) : void
postSong_flagsAsync ( bool overwriteIfExists, string artist, string song, string lyrics, string onAlbums, string flags ) : void
postSong_flagsAsync ( bool overwriteIfExists, string artist, string song, string lyrics, string onAlbums, string flags, object userState ) : void
searchAlbumsAsync ( string artist, string album, int year ) : void
searchAlbumsAsync ( string artist, string album, int year, object userState ) : void
searchArtistsAsync ( string searchString ) : void
searchArtistsAsync ( string searchString, object userState ) : void
searchSongsAsync ( string artist, string song ) : void
searchSongsAsync ( string artist, string song, object userState ) : void

Private Methods

Method Description
IsLocalFileSystemWebService ( string url ) : bool
OncheckSongExistsOperationCompleted ( object arg ) : void
OngetAlbumOperationCompleted ( object arg ) : void
OngetArtistOperationCompleted ( object arg ) : void
OngetHometownOperationCompleted ( object arg ) : void
OngetSOTDOperationCompleted ( object arg ) : void
OngetSongOperationCompleted ( object arg ) : void
OngetSongResultOperationCompleted ( object arg ) : void
OnpostAlbumOperationCompleted ( object arg ) : void
OnpostArtistOperationCompleted ( object arg ) : void
OnpostSongOperationCompleted ( object arg ) : void
OnpostSong_flagsOperationCompleted ( object arg ) : void
OnsearchAlbumsOperationCompleted ( object arg ) : void
OnsearchArtistsOperationCompleted ( object arg ) : void
OnsearchSongsOperationCompleted ( object arg ) : void
checkSongExists ( string artist, string song ) : bool
getAlbum ( string &artist, string &album, int &year, string &songs ) : string
getArtist ( string &artist ) : string[]
getHometown ( string artist, string &state, string &hometown ) : string
getSOTD ( ) : SOTDResult
getSong ( string artist, string song ) : LyricsResult
getSongResult ( string artist, string song ) : LyricsResult
postAlbum ( bool overwriteIfExists, string &artist, string &album, int &year, string asin, string songs, string &message ) : bool
postArtist ( bool overwriteIfExists, string &artist, string albums, string &message ) : bool
postSong ( bool overwriteIfExists, string &artist, string &song, string lyrics, string onAlbums, string &message ) : bool
postSong_flags ( bool overwriteIfExists, string &artist, string &song, string lyrics, string onAlbums, string flags, string &message ) : bool
searchAlbums ( string artist, string album, int year ) : string[]
searchArtists ( string searchString ) : string[]
searchSongs ( string artist, string song ) : SongResult

Method Details

CancelAsync() public method

public CancelAsync ( object userState ) : void
userState object
return void

LyricWiki() public method

public LyricWiki ( ) : System.Diagnostics
return System.Diagnostics

checkSongExistsAsync() public method

public checkSongExistsAsync ( string artist, string song ) : void
artist string
song string
return void

checkSongExistsAsync() public method

public checkSongExistsAsync ( string artist, string song, object userState ) : void
artist string
song string
userState object
return void

getAlbumAsync() public method

public getAlbumAsync ( string artist, string album, int year ) : void
artist string
album string
year int
return void

getAlbumAsync() public method

public getAlbumAsync ( string artist, string album, int year, object userState ) : void
artist string
album string
year int
userState object
return void

getArtistAsync() public method

public getArtistAsync ( string artist ) : void
artist string
return void

getArtistAsync() public method

public getArtistAsync ( string artist, object userState ) : void
artist string
userState object
return void

getHometownAsync() public method

public getHometownAsync ( string artist ) : void
artist string
return void

getHometownAsync() public method

public getHometownAsync ( string artist, object userState ) : void
artist string
userState object
return void

getSOTDAsync() public method

public getSOTDAsync ( ) : void
return void

getSOTDAsync() public method

public getSOTDAsync ( object userState ) : void
userState object
return void

getSongAsync() public method

public getSongAsync ( string artist, string song ) : void
artist string
song string
return void

getSongAsync() public method

public getSongAsync ( string artist, string song, object userState ) : void
artist string
song string
userState object
return void

getSongResultAsync() public method

public getSongResultAsync ( string artist, string song ) : void
artist string
song string
return void

getSongResultAsync() public method

public getSongResultAsync ( string artist, string song, object userState ) : void
artist string
song string
userState object
return void

postAlbumAsync() public method

public postAlbumAsync ( bool overwriteIfExists, string artist, string album, int year, string asin, string songs ) : void
overwriteIfExists bool
artist string
album string
year int
asin string
songs string
return void

postAlbumAsync() public method

public postAlbumAsync ( bool overwriteIfExists, string artist, string album, int year, string asin, string songs, object userState ) : void
overwriteIfExists bool
artist string
album string
year int
asin string
songs string
userState object
return void

postArtistAsync() public method

public postArtistAsync ( bool overwriteIfExists, string artist, string albums ) : void
overwriteIfExists bool
artist string
albums string
return void

postArtistAsync() public method

public postArtistAsync ( bool overwriteIfExists, string artist, string albums, object userState ) : void
overwriteIfExists bool
artist string
albums string
userState object
return void

postSongAsync() public method

public postSongAsync ( bool overwriteIfExists, string artist, string song, string lyrics, string onAlbums ) : void
overwriteIfExists bool
artist string
song string
lyrics string
onAlbums string
return void

postSongAsync() public method

public postSongAsync ( bool overwriteIfExists, string artist, string song, string lyrics, string onAlbums, object userState ) : void
overwriteIfExists bool
artist string
song string
lyrics string
onAlbums string
userState object
return void

postSong_flagsAsync() public method

public postSong_flagsAsync ( bool overwriteIfExists, string artist, string song, string lyrics, string onAlbums, string flags ) : void
overwriteIfExists bool
artist string
song string
lyrics string
onAlbums string
flags string
return void

postSong_flagsAsync() public method

public postSong_flagsAsync ( bool overwriteIfExists, string artist, string song, string lyrics, string onAlbums, string flags, object userState ) : void
overwriteIfExists bool
artist string
song string
lyrics string
onAlbums string
flags string
userState object
return void

searchAlbumsAsync() public method

public searchAlbumsAsync ( string artist, string album, int year ) : void
artist string
album string
year int
return void

searchAlbumsAsync() public method

public searchAlbumsAsync ( string artist, string album, int year, object userState ) : void
artist string
album string
year int
userState object
return void

searchArtistsAsync() public method

public searchArtistsAsync ( string searchString ) : void
searchString string
return void

searchArtistsAsync() public method

public searchArtistsAsync ( string searchString, object userState ) : void
searchString string
userState object
return void

searchSongsAsync() public method

public searchSongsAsync ( string artist, string song ) : void
artist string
song string
return void

searchSongsAsync() public method

public searchSongsAsync ( string artist, string song, object userState ) : void
artist string
song string
userState object
return void