Example #1
0
 /// <remarks/>
 public void CreateNewUserAsync(UserInfo userInfo, string password) {
     this.CreateNewUserAsync(userInfo, password, null);
 }
Example #2
0
 public Result CreateNewUser(UserInfo userInfo, string password) {
     object[] results = this.Invoke("CreateNewUser", new object[] {
                 userInfo,
                 password});
     return ((Result)(results[0]));
 }
Example #3
0
 /// <remarks/>
 public void AuthenticateUserAsync(UserInfo userInfo, string password, Device device, object userState) {
     if ((this.AuthenticateUserOperationCompleted == null)) {
         this.AuthenticateUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAuthenticateUserOperationCompleted);
     }
     this.InvokeAsync("AuthenticateUser", new object[] {
                 userInfo,
                 password,
                 device}, this.AuthenticateUserOperationCompleted, userState);
 }
Example #4
0
 /// <remarks/>
 public void AuthenticateUserAsync(UserInfo userInfo, string password, Device device) {
     this.AuthenticateUserAsync(userInfo, password, device, null);
 }
Example #5
0
 public TokenValueResult AuthenticateUser(UserInfo userInfo, string password, Device device) {
     object[] results = this.Invoke("AuthenticateUser", new object[] {
                 userInfo,
                 password,
                 device});
     return ((TokenValueResult)(results[0]));
 }
Example #6
0
 /// <remarks/>
 public void CreateNewUserAsync(UserInfo userInfo, string password, object userState) {
     if ((this.CreateNewUserOperationCompleted == null)) {
         this.CreateNewUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateNewUserOperationCompleted);
     }
     this.InvokeAsync("CreateNewUser", new object[] {
                 userInfo,
                 password}, this.CreateNewUserOperationCompleted, userState);
 }