Пример #1
0
 public System.Threading.Tasks.Task <SaaSCloud.Authenticate.IsAuthenticatedResponse> IsAuthenticatedAsync(string userPrincipalName, string password)
 {
     SaaSCloud.Authenticate.IsAuthenticatedRequest inValue = new SaaSCloud.Authenticate.IsAuthenticatedRequest();
     inValue.Body = new SaaSCloud.Authenticate.IsAuthenticatedRequestBody();
     inValue.Body.userPrincipalName = userPrincipalName;
     inValue.Body.password          = password;
     return(((SaaSCloud.Authenticate.ServiceSoap)(this)).IsAuthenticatedAsync(inValue));
 }
Пример #2
0
 public bool IsAuthenticated(string userPrincipalName, string password)
 {
     SaaSCloud.Authenticate.IsAuthenticatedRequest inValue = new SaaSCloud.Authenticate.IsAuthenticatedRequest();
     inValue.Body = new SaaSCloud.Authenticate.IsAuthenticatedRequestBody();
     inValue.Body.userPrincipalName = userPrincipalName;
     inValue.Body.password          = password;
     SaaSCloud.Authenticate.IsAuthenticatedResponse retVal = ((SaaSCloud.Authenticate.ServiceSoap)(this)).IsAuthenticated(inValue);
     return(retVal.Body.IsAuthenticatedResult);
 }
Пример #3
0
 System.Threading.Tasks.Task <SaaSCloud.Authenticate.IsAuthenticatedResponse> SaaSCloud.Authenticate.ServiceSoap.IsAuthenticatedAsync(SaaSCloud.Authenticate.IsAuthenticatedRequest request)
 {
     return(base.Channel.IsAuthenticatedAsync(request));
 }
Пример #4
0
 SaaSCloud.Authenticate.IsAuthenticatedResponse SaaSCloud.Authenticate.ServiceSoap.IsAuthenticated(SaaSCloud.Authenticate.IsAuthenticatedRequest request)
 {
     return(base.Channel.IsAuthenticated(request));
 }