示例#1
0
 /// <remarks/>
 public void GenerateHandLetterReportAsync(string Username, string Password, HandLetterReportItem HandLetterReport, OptionalParameters[] OptionalParam) {
     this.GenerateHandLetterReportAsync(Username, Password, HandLetterReport, OptionalParam, null);
 }
示例#2
0
 /// <remarks/>
 public void GenerateHandLetterReportAsync(string Username, string Password, HandLetterReportItem HandLetterReport, OptionalParameters[] OptionalParam, object userState) {
     if ((this.GenerateHandLetterReportOperationCompleted == null)) {
         this.GenerateHandLetterReportOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGenerateHandLetterReportOperationCompleted);
     }
     this.InvokeAsync("GenerateHandLetterReport", new object[] {
                 Username,
                 Password,
                 HandLetterReport,
                 OptionalParam}, this.GenerateHandLetterReportOperationCompleted, userState);
 }
示例#3
0
 public eMessageHandLetterReportResult GenerateHandLetterReport(string Username, string Password, HandLetterReportItem HandLetterReport, OptionalParameters[] OptionalParam) {
     object[] results = this.Invoke("GenerateHandLetterReport", new object[] {
                 Username,
                 Password,
                 HandLetterReport,
                 OptionalParam});
     return ((eMessageHandLetterReportResult)(results[0]));
 }