JSONFormatterDeserializeT Method | |
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
Public Shared Function Deserialize(Of T As IJSONSerializable) (
jsonString As String
) As T
Parameters
- jsonString
- Type: SystemString
The string to deserialize.
Type Parameters
- T
- The object type to create. Must implement IJSONSerializable.
Return Value
Type:
TAn object of type T that has been created from the given string.
Exceptions See Also