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