/// <remarks/>
 public void SetAsync(Set Set1)
 {
     this.SetAsync(Set1, null);
 }
 /// <remarks/>
 public void SetAsync(Set Set1, object userState)
 {
     if ((this.SetOperationCompleted == null)) {
         this.SetOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSetOperationCompleted);
     }
     this.InvokeAsync("Set", new object[] {
                 Set1}, this.SetOperationCompleted, userState);
 }
 /// <remarks/>
 public System.IAsyncResult BeginSet(Set Set1, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("Set", new object[] {
                 Set1}, callback, asyncState);
 }