Example #1
0
 /// <remarks/>
 public void GetSessionAsync(User user, object userState) {
     if ((this.GetSessionOperationCompleted == null)) {
         this.GetSessionOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSessionOperationCompleted);
     }
     this.InvokeAsync("GetSession", new object[] {
                 user}, this.GetSessionOperationCompleted, userState);
 }
Example #2
0
 /// <remarks/>
 public void GetSessionAsync(User user) {
     this.GetSessionAsync(user, null);
 }
Example #3
0
 /// <remarks/>
 public void RegisterAsync(User user, object userState) {
     if ((this.RegisterOperationCompleted == null)) {
         this.RegisterOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRegisterOperationCompleted);
     }
     this.InvokeAsync("Register", new object[] {
                 user}, this.RegisterOperationCompleted, userState);
 }
Example #4
0
 /// <remarks/>
 public void RegisterAsync(User user) {
     this.RegisterAsync(user, null);
 }
Example #5
0
 /// <remarks/>
 public void AuthenticateAsync(User user, object userState) {
     if ((this.AuthenticateOperationCompleted == null)) {
         this.AuthenticateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAuthenticateOperationCompleted);
     }
     this.InvokeAsync("Authenticate", new object[] {
                 user}, this.AuthenticateOperationCompleted, userState);
 }
Example #6
0
 /// <remarks/>
 public void AuthenticateAsync(User user) {
     this.AuthenticateAsync(user, null);
 }