Sdílet prostřednictvím


AzureAppConfigurationRefreshOptions.SetCacheExpiration(TimeSpan) Method

Definition

Caution

The SetCacheExpiration method is deprecated and will be removed in a future release. Please use the SetRefreshInterval method instead. Note that only the name of the method has changed, and the functionality remains the same.

Sets the cache expiration time for the key-values registered for refresh. Default value is 30 seconds. Must be greater than 1 second. Any refresh operation triggered using IConfigurationRefresher will not update the value for a key until the cached value for that key has expired.

public Microsoft.Extensions.Configuration.AzureAppConfiguration.AzureAppConfigurationRefreshOptions SetCacheExpiration (TimeSpan cacheExpiration);
[System.Obsolete("The SetCacheExpiration method is deprecated and will be removed in a future release. Please use the SetRefreshInterval method instead. Note that only the name of the method has changed, and the functionality remains the same.")]
public Microsoft.Extensions.Configuration.AzureAppConfiguration.AzureAppConfigurationRefreshOptions SetCacheExpiration (TimeSpan cacheExpiration);
member this.SetCacheExpiration : TimeSpan -> Microsoft.Extensions.Configuration.AzureAppConfiguration.AzureAppConfigurationRefreshOptions
[<System.Obsolete("The SetCacheExpiration method is deprecated and will be removed in a future release. Please use the SetRefreshInterval method instead. Note that only the name of the method has changed, and the functionality remains the same.")>]
member this.SetCacheExpiration : TimeSpan -> Microsoft.Extensions.Configuration.AzureAppConfiguration.AzureAppConfigurationRefreshOptions
Public Function SetCacheExpiration (cacheExpiration As TimeSpan) As AzureAppConfigurationRefreshOptions

Parameters

cacheExpiration
TimeSpan

Minimum time that must elapse before the cache is expired.

Returns

Attributes

Applies to