Click or drag to resize
TomlDeserializeObjectT Method (TextReader, FuncDataContractJsonSerializer)
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>(
	TextReader reader,
	Func<DataContractJsonSerializer> factory = null
)

Parameters

reader
Type: System.IOTextReader
The TextReader that contains the TOML to deserialize.
factory (Optional)
Type: SystemFuncDataContractJsonSerializer
The function to make a DataContractJsonSerializer. if null, it will make a DataContractJsonSerializer with default settings.

Type Parameters

T
The type of the object to deserialize to.

Return Value

Type: T
The deserialized object.
See Also