IConfigurationStoragePopulateT Method |
Method to populate the configuration from the specified vault.
Namespace:
MFiles.VAF.Configuration
Assembly:
MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 21.8.10524.1
Syntaxvoid Populate<T>(
Vault vault,
T configuration,
string configNamespace,
string configKey = "configuration"
)
where T : class
Sub Populate(Of T As Class) (
vault As Vault,
configuration As T,
configNamespace As String,
Optional configKey As String = "configuration"
)
generic<typename T>
where T : ref class
void Populate(
Vault^ vault,
T configuration,
String^ configNamespace,
String^ configKey = L"configuration"
)
Parameters
- vault
- Type: Vault
The vault. - configuration
- Type: T
The configuration object to populate. - configNamespace
- Type: SystemString
The configuration namespace that shall be used when loading the configuration. - configKey (Optional)
- Type: SystemString
The configuration key that identifies the value that should be loaded.
Type Parameters
- T
- The configuration object's type.
See Also