Example #1
0
        public void SendTwoFactorResponse(TwoFactorReason reason, string otp)
        {
            this.VerifyInitialized();

            Native.Client.SendTwoFactorResponse(this.handle, reason, otp);
        }
Example #2
0
 /// <summary>
 /// The method send two factor response with one time password.
 /// </summary>
 /// <param name="reason">Two factor response reason</param>
 /// <param name="otp">One time password</param>
 /// <returns>can not be null.</returns>
 public void SendTwoFactorResponse(TwoFactorReason reason, string otp)
 {
     this.Client.Handle.SendTwoFactorResponse(reason, otp);
 }