/// <remarks/>
 public void FindFolderAsync(FindFolderType FindFolder1)
 {
     this.FindFolderAsync(FindFolder1, null);
 }
 /// <remarks/>
 public void FindFolderAsync(FindFolderType FindFolder1, object userState)
 {
     if ((this.FindFolderOperationCompleted == null)) {
         this.FindFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnFindFolderOperationCompleted);
     }
     this.InvokeAsync("FindFolder", new object[] {
                 FindFolder1}, this.FindFolderOperationCompleted, userState);
 }
 /// <remarks/>
 public System.IAsyncResult BeginFindFolder(FindFolderType FindFolder1, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("FindFolder", new object[] {
                 FindFolder1}, callback, asyncState);
 }