Exemple #1
0
 public System.Threading.Tasks.Task <PSUPKTProvider.PSUPKTPassportService.AuthenticateResponse> AuthenticateAsync(string username, string password)
 {
     PSUPKTProvider.PSUPKTPassportService.AuthenticateRequest inValue = new PSUPKTProvider.PSUPKTPassportService.AuthenticateRequest();
     inValue.Body          = new PSUPKTProvider.PSUPKTPassportService.AuthenticateRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     return(((PSUPKTProvider.PSUPKTPassportService.AuthenticationSoap)(this)).AuthenticateAsync(inValue));
 }
Exemple #2
0
 public bool Authenticate(string username, string password)
 {
     PSUPKTProvider.PSUPKTPassportService.AuthenticateRequest inValue = new PSUPKTProvider.PSUPKTPassportService.AuthenticateRequest();
     inValue.Body          = new PSUPKTProvider.PSUPKTPassportService.AuthenticateRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     PSUPKTProvider.PSUPKTPassportService.AuthenticateResponse retVal = ((PSUPKTProvider.PSUPKTPassportService.AuthenticationSoap)(this)).Authenticate(inValue);
     return(retVal.Body.AuthenticateResult);
 }
Exemple #3
0
 System.Threading.Tasks.Task <PSUPKTProvider.PSUPKTPassportService.AuthenticateResponse> PSUPKTProvider.PSUPKTPassportService.AuthenticationSoap.AuthenticateAsync(PSUPKTProvider.PSUPKTPassportService.AuthenticateRequest request)
 {
     return(base.Channel.AuthenticateAsync(request));
 }
Exemple #4
0
 PSUPKTProvider.PSUPKTPassportService.AuthenticateResponse PSUPKTProvider.PSUPKTPassportService.AuthenticationSoap.Authenticate(PSUPKTProvider.PSUPKTPassportService.AuthenticateRequest request)
 {
     return(base.Channel.Authenticate(request));
 }