Example #1
0
 /// <remarks/>
 public void makeDirectoryAsync(MakeDirectoryInputType makeDirectoryInput)
 {
     this.makeDirectoryAsync(makeDirectoryInput, null);
 }
Example #2
0
 /// <remarks/>
 public void makeDirectoryAsync(MakeDirectoryInputType makeDirectoryInput, object userState)
 {
     if ((this.makeDirectoryOperationCompleted == null))
     {
         this.makeDirectoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnmakeDirectoryOperationCompleted);
     }
     this.InvokeAsync("makeDirectory", new object[] {
                 makeDirectoryInput}, this.makeDirectoryOperationCompleted, userState);
 }
Example #3
0
 /// <remarks/>
 public System.IAsyncResult BeginmakeDirectory(MakeDirectoryInputType makeDirectoryInput, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("makeDirectory", new object[] {
                 makeDirectoryInput}, callback, asyncState);
 }