Share via


XmlConfigurationSource Class

Definition

An XML file based FileConfigurationSource.

public ref class XmlConfigurationSource : Microsoft::Extensions::Configuration::FileConfigurationSource
[System.Diagnostics.CodeAnalysis.RequiresDynamicCode("Microsoft.Extensions.Configuration.Xml can use EncryptedXml which may contain XSLTs in the xml. XSLTs require dynamic code.")]
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Microsoft.Extensions.Configuration.Xml can use EncryptedXml. If you use encrypted XML files, your application might not have the algorithm implementations it needs. To avoid this problem, one option you can use is a DynamicDependency attribute to keep the algorithm implementations in your application.")]
public class XmlConfigurationSource : Microsoft.Extensions.Configuration.FileConfigurationSource
public class XmlConfigurationSource : Microsoft.Extensions.Configuration.FileConfigurationSource
[<System.Diagnostics.CodeAnalysis.RequiresDynamicCode("Microsoft.Extensions.Configuration.Xml can use EncryptedXml which may contain XSLTs in the xml. XSLTs require dynamic code.")>]
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Microsoft.Extensions.Configuration.Xml can use EncryptedXml. If you use encrypted XML files, your application might not have the algorithm implementations it needs. To avoid this problem, one option you can use is a DynamicDependency attribute to keep the algorithm implementations in your application.")>]
type XmlConfigurationSource = class
    inherit FileConfigurationSource
type XmlConfigurationSource = class
    inherit FileConfigurationSource
Public Class XmlConfigurationSource
Inherits FileConfigurationSource
Inheritance
XmlConfigurationSource
Attributes

Constructors

XmlConfigurationSource()

Initializes a new instance of XmlConfigurationSource.

Properties

FileProvider

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

(Inherited from FileConfigurationSource)
OnLoadException

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

(Inherited from FileConfigurationSource)
Optional

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

(Inherited from FileConfigurationSource)
Path

Gets or sets the path to the file.

(Inherited from FileConfigurationSource)
ReloadDelay

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

(Inherited from FileConfigurationSource)
ReloadOnChange

Gets or sets a value that indicates 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)
ResolveFileProvider()

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

(Inherited from FileConfigurationSource)

Applies to