Example #1
0
 public System.Threading.Tasks.Task <WebAdmin.Service.CheckLoginResponse> CheckLoginAsync(string userName, string passWord)
 {
     WebAdmin.Service.CheckLoginRequest inValue = new WebAdmin.Service.CheckLoginRequest();
     inValue.Body          = new WebAdmin.Service.CheckLoginRequestBody();
     inValue.Body.userName = userName;
     inValue.Body.passWord = passWord;
     return(((WebAdmin.Service.WebServiceSoap)(this)).CheckLoginAsync(inValue));
 }
Example #2
0
 public bool CheckLogin(string userName, string passWord)
 {
     WebAdmin.Service.CheckLoginRequest inValue = new WebAdmin.Service.CheckLoginRequest();
     inValue.Body          = new WebAdmin.Service.CheckLoginRequestBody();
     inValue.Body.userName = userName;
     inValue.Body.passWord = passWord;
     WebAdmin.Service.CheckLoginResponse retVal = ((WebAdmin.Service.WebServiceSoap)(this)).CheckLogin(inValue);
     return(retVal.Body.CheckLoginResult);
 }
Example #3
0
 System.Threading.Tasks.Task <WebAdmin.Service.CheckLoginResponse> WebAdmin.Service.WebServiceSoap.CheckLoginAsync(WebAdmin.Service.CheckLoginRequest request)
 {
     return(base.Channel.CheckLoginAsync(request));
 }
Example #4
0
 WebAdmin.Service.CheckLoginResponse WebAdmin.Service.WebServiceSoap.CheckLogin(WebAdmin.Service.CheckLoginRequest request)
 {
     return(base.Channel.CheckLogin(request));
 }