ConfigurationStorageInVaultReadConfigurationData Method (Vault, String, String, String) |
Returns the persisted configuration data from vault.
Namespace:
MFiles.VAF.Configuration
Assembly:
MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 21.8.10524.1
Syntaxpublic virtual bool ReadConfigurationData(
Vault vault,
string configNamespace,
string configKey,
out string data
)
Public Overridable Function ReadConfigurationData (
vault As Vault,
configNamespace As String,
configKey As String,
<OutAttribute> ByRef data As String
) As Boolean
public:
virtual bool ReadConfigurationData(
Vault^ vault,
String^ configNamespace,
String^ configKey,
[OutAttribute] String^% data
)
Parameters
- vault
- Type: Vault
The vault. - configNamespace
- Type: SystemString
The configuration namespace that shall be used when loading the configuration. - configKey
- Type: SystemString
Configuration key that identifies the module configuration. - data
- Type: SystemString
Output parameter for the data that was read. Set to null if the configuration key can't be found.
Return Value
Type:
BooleanTrue is the configuration key existed in the defined configuration namespace.
Implements
IConfigurationStorageReadConfigurationData(Vault, String, String, String)
See Also