VerifyKey() public method

Check if the validator's key is valid or not.
public VerifyKey ( String domain ) : System.Boolean
domain String
return System.Boolean
Esempio n. 1
0
        private IValidator get_api()
        {
            var api = new Validator(AksimetKey);

            if (api.VerifyKey(Domain) == false)
            {

                return null;
            }

            return api;
        }