ConfigurationStorageInVaultLoad Method (Vault, Type, String, String) |
Method to load the configuration from the specified vault.
Namespace:
MFiles.VAF.Configuration
Assembly:
MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 21.8.10524.1
Syntaxpublic virtual Object Load(
Vault vault,
Type configType,
string configNamespace,
string configKey = "configuration"
)
Public Overridable Function Load (
vault As Vault,
configType As Type,
configNamespace As String,
Optional configKey As String = "configuration"
) As Object
public:
virtual Object^ Load(
Vault^ vault,
Type^ configType,
String^ configNamespace,
String^ configKey = L"configuration"
)
Parameters
- vault
- Type: Vault
The vault. - configType
- Type: SystemType
The type of the configuration object to be loaded. - 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.
Return Value
Type:
ObjectThe loaded configuration object.
Implements
IConfigurationStorageLoad(Vault, Type, String, String)
See Also