Пример #1
0
 public System.Threading.Tasks.Task <ITI.GateIn.Console.UI.GateService.LoginResponse> LoginAsync(string userId, string password)
 {
     ITI.GateIn.Console.UI.GateService.LoginRequest inValue = new ITI.GateIn.Console.UI.GateService.LoginRequest();
     inValue.Body          = new ITI.GateIn.Console.UI.GateService.LoginRequestBody();
     inValue.Body.userId   = userId;
     inValue.Body.password = password;
     return(((ITI.GateIn.Console.UI.GateService.GateServicesSoap)(this)).LoginAsync(inValue));
 }
Пример #2
0
 public bool Login(string userId, string password)
 {
     ITI.GateIn.Console.UI.GateService.LoginRequest inValue = new ITI.GateIn.Console.UI.GateService.LoginRequest();
     inValue.Body          = new ITI.GateIn.Console.UI.GateService.LoginRequestBody();
     inValue.Body.userId   = userId;
     inValue.Body.password = password;
     ITI.GateIn.Console.UI.GateService.LoginResponse retVal = ((ITI.GateIn.Console.UI.GateService.GateServicesSoap)(this)).Login(inValue);
     return(retVal.Body.LoginResult);
 }
Пример #3
0
 System.Threading.Tasks.Task <ITI.GateIn.Console.UI.GateService.LoginResponse> ITI.GateIn.Console.UI.GateService.GateServicesSoap.LoginAsync(ITI.GateIn.Console.UI.GateService.LoginRequest request)
 {
     return(base.Channel.LoginAsync(request));
 }
Пример #4
0
 ITI.GateIn.Console.UI.GateService.LoginResponse ITI.GateIn.Console.UI.GateService.GateServicesSoap.Login(ITI.GateIn.Console.UI.GateService.LoginRequest request)
 {
     return(base.Channel.Login(request));
 }