ConfigurationStorageInVaultDeserializeT(String) Method

Generic method to load the configuration from the specified string. Creates a new object.

Definition

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

Parameters

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

Type Parameters

T
The configuration object's type.

Return Value

T

Implements

IConfigurationStorageDeserializeT(String)

See Also