类 MobilePhoneVerifyCallback

    • 构造器详细资料

      • MobilePhoneVerifyCallback

        public MobilePhoneVerifyCallback()
    • 方法详细资料

      • internalDone0

        protected final void internalDone0​(LCNull t,
                                           LCException LCException)

        MobilePhoneVerifyCallback 用来验证用户的手机号码

        指定者:
        internalDone0 在类中 LCCallback<LCNull>
        参数:
        t - null object.
        LCException - exception.

         调用的范例如下

         LCUser.verifyMobilePhoneInBackgroud("123456",
             new MobilePhoneVerifyCallback() {
               public void done(LCException e) {
                 if (e == null) {
                   requestedSuccessfully();
                 } else {
                   requestDidNotSucceed();
                 }
               }
             });