示例#1
0
 /// <remarks/>
 public void AuthenticateAsync(AuthenticationRequest req) {
     this.AuthenticateAsync(req, null);
 }
示例#2
0
 /// <remarks/>
 public void AuthenticateAsync(AuthenticationRequest req, object userState) {
     if ((this.AuthenticateOperationCompleted == null)) {
         this.AuthenticateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAuthenticateOperationCompleted);
     }
     this.InvokeAsync("Authenticate", new object[] {
                 req}, this.AuthenticateOperationCompleted, userState);
 }
示例#3
0
 public AuthenticationResponse Authenticate(AuthenticationRequest req) {
     object[] results = this.Invoke("Authenticate", new object[] {
                 req});
     return ((AuthenticationResponse)(results[0]));
 }