Exemplo n.º 1
0
 public bool Check(SessionController.ServiceReference2.UserDetails UserDetails, string username, string password)
 {
     SessionController.ServiceReference2.CheckRequest inValue = new SessionController.ServiceReference2.CheckRequest();
     inValue.UserDetails = UserDetails;
     inValue.username    = username;
     inValue.password    = password;
     SessionController.ServiceReference2.CheckResponse retVal = ((SessionController.ServiceReference2.UserAuthenticationSoap)(this)).Check(inValue);
     return(retVal.CheckResult);
 }
Exemplo n.º 2
0
 public System.Threading.Tasks.Task <SessionController.ServiceReference2.CheckResponse> CheckAsync(SessionController.ServiceReference2.UserDetails UserDetails, string username, string password)
 {
     SessionController.ServiceReference2.CheckRequest inValue = new SessionController.ServiceReference2.CheckRequest();
     inValue.UserDetails = UserDetails;
     inValue.username    = username;
     inValue.password    = password;
     return(((SessionController.ServiceReference2.UserAuthenticationSoap)(this)).CheckAsync(inValue));
 }
Exemplo n.º 3
0
 public CheckRequest(SessionController.ServiceReference2.UserDetails UserDetails, string username, string password)
 {
     this.UserDetails = UserDetails;
     this.username    = username;
     this.password    = password;
 }