CRL.Person.UserMobileVerify.SendSms C# (CSharp) Method

SendSms() protected method

发送短信方法,请重写
protected SendSms ( string mobile, string content, string &error ) : bool
mobile string
content string
error string
return bool
        protected virtual bool SendSms(string mobile, string content, out string error)
        {
            error = "请重写此方法";
            return false;
        }