Share via


FileConfigurationSource Class

Definition

Provides the base class for file-based IConfigurationSource.

public ref class FileConfigurationSource abstract : Microsoft::Extensions::Configuration::IConfigurationSource
public abstract class FileConfigurationSource : Microsoft.Extensions.Configuration.IConfigurationSource
type FileConfigurationSource = class
    interface IConfigurationSource
Public MustInherit Class FileConfigurationSource
Implements IConfigurationSource
Inheritance
FileConfigurationSource
Derived
Implements

Constructors

FileConfigurationSource()

Initializes a new instance of FileConfigurationSource.

Properties

FileProvider

Gets or sets the provider used to access the contents of the file.

OnLoadException

Gets or sets the action that's called if an uncaught exception occurs in FileConfigurationProvider.Load.

Optional

Gets or sets a value that indicates whether loading the file is optional.

Path

Gets or sets the path to the file.

ReloadDelay

Gets or sets the number of milliseconds that reload will wait before calling Load.

ReloadOnChange

Gets or sets a value that indicates whether the source will be loaded if the underlying file changes.

Methods

Build(IConfigurationBuilder)

Builds the IConfigurationProvider for this source.

EnsureDefaults(IConfigurationBuilder)

Called to use any default settings on the builder like the FileProvider or FileLoadExceptionHandler.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ResolveFileProvider()

Creates a physical file provider for the nearest existing directory if no file provider has been set, for absolute Path.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to