Example #1
0
		/// <remarks/>
		public void CreateAttachmentAsync(CreateAttachmentType CreateAttachment1)
		{
			CreateAttachmentAsync(CreateAttachment1, null);
		}
Example #2
0
		/// <remarks/>
		public void CreateAttachmentAsync(CreateAttachmentType CreateAttachment1, object userState)
		{
			if ((CreateAttachmentOperationCompleted == null))
			{
				CreateAttachmentOperationCompleted = new SendOrPostCallback(OnCreateAttachmentOperationCompleted);
			}
			InvokeAsync("CreateAttachment", new object[]
			                                	{
			                                		CreateAttachment1
			                                	}, CreateAttachmentOperationCompleted, userState);
		}
Example #3
0
		/// <remarks/>
		public IAsyncResult BeginCreateAttachment(CreateAttachmentType CreateAttachment1, AsyncCallback callback,
												  object asyncState)
		{
			return BeginInvoke("CreateAttachment", new object[]
			                                       	{
			                                       		CreateAttachment1
			                                       	}, callback, asyncState);
		}