示例#1
0
        public string ChenckValidate(string username, string password)
        {
            ChenckValidateResponse retVal = ((PassPortHttpGet)this).ChenckValidate(new ChenckValidateRequest
            {
                username = username,
                password = password
            });

            return(retVal.@string);
        }
示例#2
0
        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);
        }