예제 #1
0
 public System.Threading.Tasks.Task <Samico.ServiceSAC.LoginResponse> LoginAsync(string _user, string _pass)
 {
     Samico.ServiceSAC.LoginRequest inValue = new Samico.ServiceSAC.LoginRequest();
     inValue.Body       = new Samico.ServiceSAC.LoginRequestBody();
     inValue.Body._user = _user;
     inValue.Body._pass = _pass;
     return(((Samico.ServiceSAC.Service1Soap)(this)).LoginAsync(inValue));
 }
예제 #2
0
 public string Login(string _user, string _pass)
 {
     Samico.ServiceSAC.LoginRequest inValue = new Samico.ServiceSAC.LoginRequest();
     inValue.Body       = new Samico.ServiceSAC.LoginRequestBody();
     inValue.Body._user = _user;
     inValue.Body._pass = _pass;
     Samico.ServiceSAC.LoginResponse retVal = ((Samico.ServiceSAC.Service1Soap)(this)).Login(inValue);
     return(retVal.Body.LoginResult);
 }
예제 #3
0
 System.Threading.Tasks.Task <Samico.ServiceSAC.LoginResponse> Samico.ServiceSAC.Service1Soap.LoginAsync(Samico.ServiceSAC.LoginRequest request)
 {
     return(base.Channel.LoginAsync(request));
 }
예제 #4
0
 Samico.ServiceSAC.LoginResponse Samico.ServiceSAC.Service1Soap.Login(Samico.ServiceSAC.LoginRequest request)
 {
     return(base.Channel.Login(request));
 }