Beispiel #1
0
 /// <remarks/>
 public void ExternalAuthenticationAsync(SWSToken theToken) {
     this.ExternalAuthenticationAsync(theToken, null);
 }
Beispiel #2
0
 /// <remarks/>
 public void ExternalAuthenticationAsync(SWSToken theToken, object userState) {
     if ((this.ExternalAuthenticationOperationCompleted == null)) {
         this.ExternalAuthenticationOperationCompleted = new System.Threading.SendOrPostCallback(this.OnExternalAuthenticationOperationCompleted);
     }
     this.InvokeAsync("ExternalAuthentication", new object[] {
                 theToken}, this.ExternalAuthenticationOperationCompleted, userState);
 }
Beispiel #3
0
 public bool ExternalAuthentication(SWSToken theToken) {
     object[] results = this.Invoke("ExternalAuthentication", new object[] {
                 theToken});
     return ((bool)(results[0]));
 }