ConfigurationStorageInVaultDeserializeT(String, T) Method

Method to load the configuration from the specified string. Populates an existing object.

Definition

Namespace: MFiles.VAF.Configuration
Assembly: MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 23.12.13247.3
C#
public virtual void Deserialize<T>(
	string configurationData,
	T configuration
)
where T : class

Parameters

configurationData  String
The configuration data from which the configuration object should be loaded from.
configuration  T
The configuration object to populate.

Type Parameters

T
The configuration object's type.

Implements

IConfigurationStorageDeserializeT(String, T)

See Also