public string ChenckValidate(string username, string password) { ChenckValidateResponse retVal = ((PassPortHttpGet)this).ChenckValidate(new ChenckValidateRequest { username = username, password = password }); return(retVal.@string); }
public string ChenckValidate(string applicationname, string username, string password) { ChenckValidateResponse retVal = ((PassPortSoap)this).ChenckValidate(new ChenckValidateRequest { Body = new ChenckValidateRequestBody { applicationname = applicationname, username = username, password = password } }); return(retVal.Body.ChenckValidateResult); }