Method | Description | |
---|---|---|
UseAppConfig ( this configuration ) : IConfigConfiguration |
Standard app.config (web.config) configuration store. Read-only.
|
|
UseAssemblyConfig ( this configuration, |
Reads configuration from the .dll.config or .exe.config file.
|
|
UseAzureConfigStore ( this configuration ) : IConfigConfiguration |
Use azure configuration manager
|
|
UseAzureKeyVault ( this configuration, Uri vaultUri, string azureAadClientId, string azureAadClientSecret ) : IConfigConfiguration |
Use Azure Key Vault
|
|
UseAzureTable ( this configuration, string accountName, string storageKey, string tableName, string appName ) : IConfigConfiguration |
Use azure tables
|
|
UseEnvironmentVariables ( this configuration ) : IConfigConfiguration |
Uses system environment variables
|
|
UseInMemoryConfig ( this configuration ) : IConfigConfiguration |
Use in-memory configuration
|
|
UseIniFile ( this configuration, string iniFilePath ) : IConfigConfiguration |
Simple INI storage.
|
public static UseAppConfig ( this configuration ) : IConfigConfiguration | ||
configuration | this | |
return | IConfigConfiguration |
public static UseAssemblyConfig ( this configuration, |
||
configuration | this | |
assembly | Reference to the assembly to look for | |
return | IConfigConfiguration |
public static UseAzureConfigStore ( this configuration ) : IConfigConfiguration | ||
configuration | this | |
return | IConfigConfiguration |
public static UseAzureKeyVault ( this configuration, Uri vaultUri, string azureAadClientId, string azureAadClientSecret ) : IConfigConfiguration | ||
configuration | this | |
vaultUri | Uri | |
azureAadClientId | string | |
azureAadClientSecret | string | |
return | IConfigConfiguration |
public static UseAzureTable ( this configuration, string accountName, string storageKey, string tableName, string appName ) : IConfigConfiguration | ||
configuration | this | |
accountName | string | |
storageKey | string | |
tableName | string | |
appName | string | |
return | IConfigConfiguration |
public static UseEnvironmentVariables ( this configuration ) : IConfigConfiguration | ||
configuration | this | |
return | IConfigConfiguration |
public static UseInMemoryConfig ( this configuration ) : IConfigConfiguration | ||
configuration | this | |
return | IConfigConfiguration |
public static UseIniFile ( this configuration, string iniFilePath ) : IConfigConfiguration | ||
configuration | this | |
iniFilePath | string | File does not have to exist, however it will be created as soon as you try to write to it. |
return | IConfigConfiguration |