/// <remarks/>
 public void ExpandDLAsync(ExpandDLType ExpandDL1)
 {
     this.ExpandDLAsync(ExpandDL1, null);
 }
 /// <remarks/>
 public void ExpandDLAsync(ExpandDLType ExpandDL1, object userState)
 {
     if ((this.ExpandDLOperationCompleted == null))
     {
         this.ExpandDLOperationCompleted = new System.Threading.SendOrPostCallback(this.OnExpandDLOperationCompleted);
     }
     this.InvokeAsync("ExpandDL", new object[] {
                 ExpandDL1}, this.ExpandDLOperationCompleted, userState);
 }
 /// <remarks/>
 public System.IAsyncResult BeginExpandDL(ExpandDLType ExpandDL1, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("ExpandDL", new object[] {
                 ExpandDL1}, callback, asyncState);
 }