IConfigurationStorage Interface

Definition

Namespace: MFiles.VAF.Configuration
Assembly: MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 23.12.13247.3
C#
public interface IConfigurationStorage

Methods

Deserialize(Type, String) Method to load the configuration from the specified string. Creates a new object.
Deserialize<T>(String) Generic method to load the configuration from the specified string. Creates a new object.
Deserialize<T>(String, T) Method to load the configuration from the specified string. Populates an existing object.
Load(Vault, Type, String, String) Method to load the configuration from the specified vault.
Load<T>(Vault, String, String) Generic method to load the configuration from the specified vault.
Populate<T> 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.
Save<T> Save the configuration to the specified vault.
SaveConfigurationData Persists the configuration data to the vault.
Serialize<T> Serializes the given configuration object to a string.

See Also