/// <remarks/> public System.IAsyncResult BeginpostSong_flags(bool overwriteIfExists, string artist, string song, string lyrics, AlbumResult[] onAlbums, string flags, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("postSong_flags", new object[] { overwriteIfExists, artist, song, lyrics, onAlbums, flags}, callback, asyncState); }
/// <remarks/> public void postSong_flagsAsync(bool overwriteIfExists, string artist, string song, string lyrics, AlbumResult[] onAlbums, string flags) { this.postSong_flagsAsync(overwriteIfExists, artist, song, lyrics, onAlbums, flags, null); }
/// <remarks/> public void postSong_flagsAsync(bool overwriteIfExists, string artist, string song, string lyrics, AlbumResult[] onAlbums, string flags, object userState) { if ((this.postSong_flagsOperationCompleted == null)) { this.postSong_flagsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnpostSong_flagsOperationCompleted); } this.InvokeAsync("postSong_flags", new object[] { overwriteIfExists, artist, song, lyrics, onAlbums, flags}, this.postSong_flagsOperationCompleted, userState); }
public bool postSong_flags(bool overwriteIfExists, ref string artist, ref string song, string lyrics, AlbumResult[] onAlbums, string flags, out string message) { object[] results = this.Invoke("postSong_flags", new object[] { overwriteIfExists, artist, song, lyrics, onAlbums, flags}); artist = ((string)(results[1])); song = ((string)(results[2])); message = ((string)(results[3])); return ((bool)(results[0])); }