public void Invalid(string phone, IBntWebModule module = null, string type = null) { var key = SmsContent.GetKey(phone, module, type); Invalid(key); }
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)); }