コード例 #1
0
 public System.Threading.Tasks.Task <Bartec.Collective.Auth.AuthenticateResponse> AuthenticateAsync(string user, string password)
 {
     Bartec.Collective.Auth.AuthenticateRequest inValue = new Bartec.Collective.Auth.AuthenticateRequest();
     inValue.Body          = new Bartec.Collective.Auth.AuthenticateRequestBody();
     inValue.Body.user     = user;
     inValue.Body.password = password;
     return(((Bartec.Collective.Auth.AuthenticationAPIWebServiceSoap)(this)).AuthenticateAsync(inValue));
 }
コード例 #2
0
 public Bartec.Collective.Auth.AuthenticateResult Authenticate(string user, string password)
 {
     Bartec.Collective.Auth.AuthenticateRequest inValue = new Bartec.Collective.Auth.AuthenticateRequest();
     inValue.Body          = new Bartec.Collective.Auth.AuthenticateRequestBody();
     inValue.Body.user     = user;
     inValue.Body.password = password;
     Bartec.Collective.Auth.AuthenticateResponse retVal = ((Bartec.Collective.Auth.AuthenticationAPIWebServiceSoap)(this)).Authenticate(inValue);
     return(retVal.Body.AuthenticateResult);
 }
コード例 #3
0
 System.Threading.Tasks.Task <Bartec.Collective.Auth.AuthenticateResponse> Bartec.Collective.Auth.AuthenticationAPIWebServiceSoap.AuthenticateAsync(Bartec.Collective.Auth.AuthenticateRequest request)
 {
     return(base.Channel.AuthenticateAsync(request));
 }
コード例 #4
0
 Bartec.Collective.Auth.AuthenticateResponse Bartec.Collective.Auth.AuthenticationAPIWebServiceSoap.Authenticate(Bartec.Collective.Auth.AuthenticateRequest request)
 {
     return(base.Channel.Authenticate(request));
 }