IConfigurationStorageDeserializeT Method (String) |
Generic method to load the configuration from the specified string. Creates a new object.
Namespace:
MFiles.VAF.Configuration
Assembly:
MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 21.8.10524.1
SyntaxT Deserialize<T>(
string configurationData
)
where T : class, new()
Function Deserialize(Of T As {Class, New}) (
configurationData As String
) As T
generic<typename T>
where T : ref class, gcnew()
T Deserialize(
String^ configurationData
)
Parameters
- configurationData
- Type: SystemString
The configuration data from which the configuration object should be loaded from.
Type Parameters
- T
- The configuration object's type.
Return Value
Type:
T
See Also