ConfigurationStorageInVaultSaveT Method |
Save the configuration to the specified vault.
Namespace:
MFiles.VAF.Configuration
Assembly:
MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 21.8.10524.1
Syntaxpublic virtual void Save<T>(
Vault vault,
T configuration,
string configNamespace,
string configKey = "configuration"
)
where T : class
Public Overridable Sub Save(Of T As Class) (
vault As Vault,
configuration As T,
configNamespace As String,
Optional configKey As String = "configuration"
)
public:
generic<typename T>
where T : ref class
virtual void Save(
Vault^ vault,
T configuration,
String^ configNamespace,
String^ configKey = L"configuration"
)
Parameters
- vault
- Type: Vault
The vault. - configuration
- Type: T
The configuration object to save. - configNamespace
- Type: SystemString
The configuration namespace that shall be used when saving the configuration. - configKey (Optional)
- Type: SystemString
The configuration key that identifies the value that is be used when saving.
Type Parameters
- T
- The configuration object's type.
Implements
IConfigurationStorageSaveT(Vault, T, String, String)
See Also