Click or drag to resize

JSONFormatterDeserializeT Method

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Deserializes a given string into an object that implements IJSONSerializable.

Namespace:  Telogis.GeoBase.Serialization
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public static T Deserialize<T>(
	string jsonString
)
where T : IJSONSerializable

Parameters

jsonString
Type: SystemString
The string to deserialize.

Type Parameters

T
The object type to create. Must implement IJSONSerializable.

Return Value

Type: T
An object of type T that has been created from the given string.
Exceptions
ExceptionCondition
JSONFormatExceptionThrown when the input JSON string is invalid
UnknownJSONTypeExceptionThrown when the JSON object type is not recognized
See Also