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