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