IConfiguration.GetReloadToken Method

Definition

Attempts to get an IChangeToken for change tracking.

public:
 Microsoft::Extensions::Primitives::IChangeToken ^ GetReloadToken();
public Microsoft.Extensions.Primitives.IChangeToken GetReloadToken ();
abstract member GetReloadToken : unit -> Microsoft.Extensions.Primitives.IChangeToken
Public Function GetReloadToken () As IChangeToken

Returns

An IChangeToken token if this provider supports change tracking, null otherwise.

Remarks

GetReloadToken is a method that can be used to get a change token that notifies when the configuration is reloaded. A change token is a way to track changes in an object, such as a file, a cache entry, or an option.

Applies to