예제 #1
0
        public void Invalid(string phone, IBntWebModule module = null, string type = null)
        {
            var key = SmsContent.GetKey(phone, module, type);

            Invalid(key);
        }
예제 #2
0
        public bool VerifyCode(string phone, string code, IBntWebModule module = null, string type = null, bool invalid = true)
        {
            var key = SmsContent.GetKey(phone, module, type);

            return(VerifyCodeWithKey(key, code, invalid));
        }