示例#1
0
文件: Reference.cs 项目: 2nfro/dotNet
 /// <remarks/>
 public void CreateNewUserAsync(UserInfo userInfo, string password) {
     this.CreateNewUserAsync(userInfo, password, null);
 }
示例#2
0
文件: Reference.cs 项目: 2nfro/dotNet
 public Result CreateNewUser(UserInfo userInfo, string password) {
     object[] results = this.Invoke("CreateNewUser", new object[] {
                 userInfo,
                 password});
     return ((Result)(results[0]));
 }
示例#3
0
文件: Reference.cs 项目: 2nfro/dotNet
 /// <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);
 }
示例#4
0
文件: Reference.cs 项目: 2nfro/dotNet
 /// <remarks/>
 public void AuthenticateUserAsync(UserInfo userInfo, string password, Device device) {
     this.AuthenticateUserAsync(userInfo, password, device, null);
 }
示例#5
0
文件: Reference.cs 项目: 2nfro/dotNet
 public TokenValueResult AuthenticateUser(UserInfo userInfo, string password, Device device) {
     object[] results = this.Invoke("AuthenticateUser", new object[] {
                 userInfo,
                 password,
                 device});
     return ((TokenValueResult)(results[0]));
 }
示例#6
0
文件: Reference.cs 项目: 2nfro/dotNet
 /// <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);
 }