Abp.Web.SimpleCaptcha.SimpleCaptchaModuleConfig.SetCookieCodeStoreSecretKey(string)

Here are the examples of the csharp api class Abp.Web.SimpleCaptcha.SimpleCaptchaModuleConfig.SetCookieCodeStoreSecretKey(string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: abplus
Source File: SimpleCaptchaModuleConfig.cs
public ISimpleCaptchaModuleConfig UseCookieCodeStore(string secretKey)
        {
            IocManager.Instance.Register<IVerificationCodeStore, CookieVerificationCodeStore>();
            return SetCookieCodeStoreSecretKey(secretKey);
        }