コード例 #1
0
ファイル: Reference.cs プロジェクト: gipasoft/Sfera
 /// <remarks/>
 public void GenerateHandLetterReportAsync(string Username, string Password, HandLetterReportItem HandLetterReport, OptionalParameters[] OptionalParam) {
     this.GenerateHandLetterReportAsync(Username, Password, HandLetterReport, OptionalParam, null);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: gipasoft/Sfera
 /// <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
ファイル: Reference.cs プロジェクト: gipasoft/Sfera
 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]));
 }