Click or drag to resize
TomlDeserializeObjectT Method (IEnumerableChar, DataContractJsonSerializerSettings)
Deserializes the TOML to the specified type.

Namespace: HyperTomlProcessor
Assembly: HyperTomlProcessor (in HyperTomlProcessor.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
public T DeserializeObject<T>(
	IEnumerable<char> toml,
	DataContractJsonSerializerSettings settings
)

Parameters

toml
Type: System.Collections.GenericIEnumerableChar
The TOML string to deserialize.
settings
Type: System.Runtime.Serialization.JsonDataContractJsonSerializerSettings
A DataContractJsonSerializerSettings to make the DataContractJsonSerializer.

Type Parameters

T
The type of the object to deserialize to.

Return Value

Type: T
The deserialized object.
See Also