Поделиться через


StreamConfigurationProvider Class

Definition

Defines the core behavior of stream-based configuration providers and provides a base for derived classes.

public ref class StreamConfigurationProvider abstract : Microsoft::Extensions::Configuration::ConfigurationProvider
public abstract class StreamConfigurationProvider : Microsoft.Extensions.Configuration.ConfigurationProvider
type StreamConfigurationProvider = class
    inherit ConfigurationProvider
Public MustInherit Class StreamConfigurationProvider
Inherits ConfigurationProvider
Inheritance
StreamConfigurationProvider
Derived

Constructors

StreamConfigurationProvider(StreamConfigurationSource)

Initializes a new instance of the StreamConfigurationProvider class.

Properties

Data

Gets or sets the configuration key-value pairs for this provider.

(Inherited from ConfigurationProvider)
Source

Gets the source settings for this provider.

Methods

GetChildKeys(IEnumerable<String>, String)

Returns the list of keys that this provider has.

(Inherited from ConfigurationProvider)
GetReloadToken()

Returns a IChangeToken that can be used to listen when this provider is reloaded.

(Inherited from ConfigurationProvider)
Load()

Loads the configuration data from the stream.

Load(Stream)

Loads the configuration data from the stream.

OnReload()

Triggers the reload change token and creates a new one.

(Inherited from ConfigurationProvider)
Set(String, String)

Sets a value for a given key.

(Inherited from ConfigurationProvider)
ToString()

Generates a string representing this provider name and relevant details.

(Inherited from ConfigurationProvider)
TryGet(String, String)

Attempts to find a value with the given key.

(Inherited from ConfigurationProvider)

Applies to