IniConfigurationProvider Class

Definition

An INI file based ConfigurationProvider.

public ref class IniConfigurationProvider : Microsoft::Extensions::Configuration::FileConfigurationProvider
public class IniConfigurationProvider : Microsoft.Extensions.Configuration.FileConfigurationProvider
type IniConfigurationProvider = class
    inherit FileConfigurationProvider
Public Class IniConfigurationProvider
Inherits FileConfigurationProvider
Inheritance

Remarks

INI files are simple line structures (INI Files on Wikipedia). The following example demonstrates a structure of the INI file:

[Section:Header]
key1=value1
key2 = " value2 "
; comment
# comment
/ comment

For more information and examples, see INI configuration provider.

Constructors

IniConfigurationProvider(IniConfigurationSource)

Initializes a new instance with the specified source.

Properties

Data

The configuration key value pairs for this provider.

(Inherited from ConfigurationProvider)
Source

The source settings for this provider.

(Inherited from FileConfigurationProvider)

Methods

Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

(Inherited from FileConfigurationProvider)
Dispose(Boolean)

Dispose the provider.

(Inherited from FileConfigurationProvider)
Equals(Object)

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

(Inherited from Object)
GetChildKeys(IEnumerable<String>, String)

Returns the list of keys that this provider has.

(Inherited from ConfigurationProvider)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetReloadToken()

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

(Inherited from ConfigurationProvider)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
Load()

Loads the contents of the file at Path.

(Inherited from FileConfigurationProvider)
Load(Stream)

Loads the INI data from a stream.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
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 FileConfigurationProvider)
TryGet(String, String)

Attempts to find a value with the specified key.

(Inherited from ConfigurationProvider)

Applies to