System.Web.Http.HttpConfigurationExtensions.InitializeCustomWebHooksSqlStorage C# (CSharp) Method

InitializeCustomWebHooksSqlStorage() public static method

Configures a Microsoft SQL Server Storage implementation of IWebHookStore which provides a persistent store for registered WebHooks used by the custom WebHooks module. Using this initializer, the data will be encrypted using IDataProtector.
public static InitializeCustomWebHooksSqlStorage ( this config ) : void
config this The current config.
return void
        public static void InitializeCustomWebHooksSqlStorage(this HttpConfiguration config)
        {
            InitializeCustomWebHooksSqlStorage(config, encryptData: true);
        }

Same methods

HttpConfigurationExtensions::InitializeCustomWebHooksSqlStorage ( this config, bool encryptData ) : void