public void UpdateServerAsync(ClientLauncher.LauncherData.ServerInfo theServerInfo, object userState)
 {
     if ((this.onBeginUpdateServerDelegate == null))
     {
         this.onBeginUpdateServerDelegate = new BeginOperationDelegate(this.OnBeginUpdateServer);
     }
     if ((this.onEndUpdateServerDelegate == null))
     {
         this.onEndUpdateServerDelegate = new EndOperationDelegate(this.OnEndUpdateServer);
     }
     if ((this.onUpdateServerCompletedDelegate == null))
     {
         this.onUpdateServerCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnUpdateServerCompleted);
     }
     base.InvokeAsync(this.onBeginUpdateServerDelegate, new object[] {
         theServerInfo
     }, this.onEndUpdateServerDelegate, this.onUpdateServerCompletedDelegate, userState);
 }
 public void UpdateServerAsync(ClientLauncher.LauncherData.ServerInfo theServerInfo)
 {
     this.UpdateServerAsync(theServerInfo, null);
 }
 public System.IAsyncResult BeginUpdateServer(ClientLauncher.LauncherData.ServerInfo theServerInfo, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginUpdateServer(theServerInfo, callback, asyncState));
 }
 private System.IAsyncResult OnBeginUpdateServer(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     ClientLauncher.LauncherData.ServerInfo theServerInfo = ((ClientLauncher.LauncherData.ServerInfo)(inValues[0]));
     return(this.BeginUpdateServer(theServerInfo, callback, asyncState));
 }
 public void UpdateServer(ClientLauncher.LauncherData.ServerInfo theServerInfo)
 {
     base.Channel.UpdateServer(theServerInfo);
 }