ConfigurationStorageInVault Class

The default implementation of the configuration storage.

Definition

Namespace: MFiles.VAF.Configuration
Assembly: MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 23.12.13247.3
C#
public class ConfigurationStorageInVault : IConfigurationStorage
Inheritance
Object    ConfigurationStorageInVault
Implements
IConfigurationStorage

Constructors

Methods

Deserialize(Type, String) Method to load the configuration from the specified string. Creates a new object.
DeserializeT(String) Generic method to load the configuration from the specified string. Creates a new object.
DeserializeT(String, T) Method to load the configuration from the specified string. Populates an existing object.
GetConfigurationID Generates the configuration ID according to the selected mode.
Load(Vault, Type, String, String) Method to load the configuration from the specified vault.
LoadT(Vault, String, String) Generic ethod to load the configuration from the specified vault.
PopulateT Method to populate the configuration from the specified vault.
ReadConfigurationData(Vault, String, String) Returns the persisted configuration data from vault.
ReadConfigurationData(Vault, String, String, String) Returns the persisted configuration data from vault.
SaveT Save the configuration to the specified vault.
SaveConfigurationData Persists the configuration data to the vault.
SerializeT Serializes the given configuration object to a string.

Fields

fallbackStorageLocation The fallback storage location of the configurations. Will be checked if the configuration can't be found from the primary location. Can be null.
mode Configuration ID creation mode.
storageLocation The storage location of the configurations.

See Also