Exemplo n.º 1
0
 public web136.SLAuth.Logon Authenticate(string email, string password, ref string[] errors)
 {
     web136.SLAuth.AuthenticateRequest inValue = new web136.SLAuth.AuthenticateRequest();
     inValue.email    = email;
     inValue.password = password;
     inValue.errors   = errors;
     web136.SLAuth.AuthenticateResponse retVal = ((web136.SLAuth.ISLAuth)(this)).Authenticate(inValue);
     errors = retVal.errors;
     return(retVal.AuthenticateResult);
 }
Exemplo n.º 2
0
 public System.Threading.Tasks.Task <web136.SLAuth.AuthenticateResponse> AuthenticateAsync(web136.SLAuth.AuthenticateRequest request)
 {
     return(base.Channel.AuthenticateAsync(request));
 }
Exemplo n.º 3
0
 web136.SLAuth.AuthenticateResponse web136.SLAuth.ISLAuth.Authenticate(web136.SLAuth.AuthenticateRequest request)
 {
     return(base.Channel.Authenticate(request));
 }