Example #1
0
 public ApiCaptchaAnswer(ApiCaptchaQuestion captchaQuestion, string response)
 {
     this.CaptchaQuestion = captchaQuestion;
     this.UserResponse = response;
 }
Example #2
0
 public ApiCaptchaRequiredException(ApiCaptchaQuestion captchaQuestion)
     : base(string.Format("API method call replied with \"need_captcha\"."))
 {
     this.CaptchaQuestion = captchaQuestion;
 }