System.Web.Http.HttpConfigurationExtensions.InitializeCustomWebHooksAzureStorage C# (CSharp) Méthode

InitializeCustomWebHooksAzureStorage() public static méthode

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.
Résultat void
        public static void InitializeCustomWebHooksAzureStorage(this HttpConfiguration config)
        {
            InitializeCustomWebHooksAzureStorage(config, encryptData: true);
        }

Same methods

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