コード例 #1
0
ファイル: Reference.cs プロジェクト: ArfiSoft/MSoHelpDesk
 /// <remarks/>
 public void AddOrgDepartmentAsync(AddOrgDepartmentRequest req) {
     this.AddOrgDepartmentAsync(req, null);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: ArfiSoft/MSoHelpDesk
 /// <remarks/>
 public void AddOrgDepartmentAsync(AddOrgDepartmentRequest req, object userState) {
     if ((this.AddOrgDepartmentOperationCompleted == null)) {
         this.AddOrgDepartmentOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddOrgDepartmentOperationCompleted);
     }
     this.InvokeAsync("AddOrgDepartment", new object[] {
                 req}, this.AddOrgDepartmentOperationCompleted, userState);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: ArfiSoft/MSoHelpDesk
 public AddOrgDepartmentResponse AddOrgDepartment(AddOrgDepartmentRequest req) {
     object[] results = this.Invoke("AddOrgDepartment", new object[] {
                 req});
     return ((AddOrgDepartmentResponse)(results[0]));
 }