Example #1
0
 public static void ResetConfiguration()
 {
     _reCaptcha = new ReCaptchaObject();
 }
Example #2
0
 public static void Configure(string publicKey, string secretKey, ReCaptchaLanguage? defaultLanguage = null)
 {
     _reCaptcha = new ReCaptchaObject(publicKey, secretKey, defaultLanguage);
 }
Example #3
0
 public static void Configure(string publicKey, string secretKey, ReCaptchaLanguage?defaultLanguage = null, ReCaptchaTheme theme = ReCaptchaTheme.light)
 {
     _reCaptcha = new ReCaptchaObject(publicKey, secretKey, defaultLanguage, theme);
 }
Example #4
0
 public static void ResetConfiguration()
 {
     _reCaptcha = new ReCaptchaObject();
 }
 public static void Configure(string publicKey, string secretKey, ReCaptchaLanguage?defaultLanguage = null)
 {
     _reCaptcha = new ReCaptchaObject(publicKey, secretKey, defaultLanguage);
 }