Example #1
0
 public ZetaUploaderCommunicationClientTransferResult SendFile(ZetaUploaderCommunicationClientTransferInformation information)
 {
     object[] results = this.Invoke("SendFile", new object[] {
         information
     });
     return((ZetaUploaderCommunicationClientTransferResult)(results[0]));
 }
Example #2
0
 /// <remarks/>
 public void SendFileAsync(ZetaUploaderCommunicationClientTransferInformation information, object userState)
 {
     if ((this.SendFileOperationCompleted == null))
     {
         this.SendFileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSendFileOperationCompleted);
     }
     this.InvokeAsync("SendFile", new object[] {
         information
     }, this.SendFileOperationCompleted, userState);
 }
Example #3
0
 /// <remarks/>
 public void SendFileAsync(ZetaUploaderCommunicationClientTransferInformation information)
 {
     this.SendFileAsync(information, null);
 }
Example #4
0
 /// <remarks/>
 public void SendFileAsync(ZetaUploaderCommunicationClientTransferInformation information, object userState) {
     if ((this.SendFileOperationCompleted == null)) {
         this.SendFileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSendFileOperationCompleted);
     }
     this.InvokeAsync("SendFile", new object[] {
                 information}, this.SendFileOperationCompleted, userState);
 }
Example #5
0
 /// <remarks/>
 public void SendFileAsync(ZetaUploaderCommunicationClientTransferInformation information) {
     this.SendFileAsync(information, null);
 }
Example #6
0
 public ZetaUploaderCommunicationClientTransferResult SendFile(ZetaUploaderCommunicationClientTransferInformation information) {
     object[] results = this.Invoke("SendFile", new object[] {
                 information});
     return ((ZetaUploaderCommunicationClientTransferResult)(results[0]));
 }