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

InitializeCustomWebHooksAzureStorage() public static method

Configures a Microsoft Azure Table 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 InitializeCustomWebHooksAzureStorage ( this config ) : void
config this The current config.
return void
        public static void InitializeCustomWebHooksAzureStorage(this HttpConfiguration config)
        {
            InitializeCustomWebHooksAzureStorage(config, encryptData: true);
        }

Same methods

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