Esempio n. 1
0
 public DocSendResult DocSend(DocSendArgument argument)
 {
     object[] results = this.Invoke("DocSend", new object[] {
         argument
     });
     return((DocSendResult)(results[0]));
 }
Esempio n. 2
0
 /// <remarks/>
 public void DocSendAsync(DocSendArgument argument, object userState)
 {
     if ((this.DocSendOperationCompleted == null))
     {
         this.DocSendOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDocSendOperationCompleted);
     }
     this.InvokeAsync("DocSend", new object[] {
         argument
     }, this.DocSendOperationCompleted, userState);
 }
Esempio n. 3
0
 /// <remarks/>
 public void DocSendAsync(DocSendArgument argument)
 {
     this.DocSendAsync(argument, null);
 }
Esempio n. 4
0
 /// <remarks/>
 public System.IAsyncResult BeginDocSend(DocSendArgument argument, System.AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("DocSend", new object[] {
         argument
     }, callback, asyncState));
 }