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