Ejemplo n.º 1
0
 /// <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);
 }
Ejemplo n.º 2
0
 /// <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);
 }
Ejemplo n.º 3
0
 /// <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);
 }
Ejemplo n.º 4
0
 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]));
 }