XmlConfigurationSource Class

Definition

An XML file based FileConfigurationSource.

public ref class XmlConfigurationSource : Microsoft::Extensions::Configuration::FileConfigurationSource
public class XmlConfigurationSource : Microsoft.Extensions.Configuration.FileConfigurationSource
type XmlConfigurationSource = class
    inherit FileConfigurationSource
Public Class XmlConfigurationSource
Inherits FileConfigurationSource
Inheritance
XmlConfigurationSource

Constructors

XmlConfigurationSource()

Initializes a new instance of XmlConfigurationSource.

Properties

FileProvider

Used to access the contents of the file.

(Inherited from FileConfigurationSource)
OnLoadException

Will be called if an uncaught exception occurs in FileConfigurationProvider.Load.

(Inherited from FileConfigurationSource)
Optional

Determines if loading the file is optional.

(Inherited from FileConfigurationSource)
Path

The path to the file.

(Inherited from FileConfigurationSource)
ReloadDelay

Number of milliseconds that reload will wait before calling Load. This helps avoid triggering reload before a file is completely written. Default is 250.

(Inherited from FileConfigurationSource)
ReloadOnChange

Determines whether the source will be loaded if the underlying file changes.

(Inherited from FileConfigurationSource)

Methods

Build(IConfigurationBuilder)

Builds the XmlConfigurationProvider for this source.

EnsureDefaults(IConfigurationBuilder)

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

(Inherited from FileConfigurationSource)
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()

If no file provider has been set, for absolute Path, this will creates a physical file provider for the nearest existing directory.

(Inherited from FileConfigurationSource)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to