MemoryConfigurationProvider Class

Definition

In-memory implementation of IConfigurationProvider.

public ref class MemoryConfigurationProvider : Microsoft::Extensions::Configuration::ConfigurationProvider, System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::String ^>>
public class MemoryConfigurationProvider : Microsoft.Extensions.Configuration.ConfigurationProvider, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string>>
type MemoryConfigurationProvider = class
    inherit ConfigurationProvider
    interface seq<KeyValuePair<string, string>>
    interface IEnumerable
Public Class MemoryConfigurationProvider
Inherits ConfigurationProvider
Implements IEnumerable(Of KeyValuePair(Of String, String))
Inheritance
MemoryConfigurationProvider
Implements

Remarks

For more information and examples, see Memory configuration provider.

Constructors

MemoryConfigurationProvider(MemoryConfigurationSource)

Initialize a new instance from the source.

Properties

Data

The configuration key value pairs for this provider.

(Inherited from ConfigurationProvider)

Methods

Add(String, String)

Add a new key and value pair.

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)
GetEnumerator()

Returns an enumerator that iterates through the collection.

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 (or reloads) the data for this provider.

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

Attempts to find a value with the specified key.

(Inherited from ConfigurationProvider)

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through the collection.

Extension Methods

CopyToDataTable<T>(IEnumerable<T>)

Returns a DataTable that contains copies of the DataRow objects, given an input IEnumerable<T> object where the generic parameter T is DataRow.

CopyToDataTable<T>(IEnumerable<T>, DataTable, LoadOption)

Copies DataRow objects to the specified DataTable, given an input IEnumerable<T> object where the generic parameter T is DataRow.

CopyToDataTable<T>(IEnumerable<T>, DataTable, LoadOption, FillErrorEventHandler)

Copies DataRow objects to the specified DataTable, given an input IEnumerable<T> object where the generic parameter T is DataRow.

Applies to