JSONObjectGet Method (String, Object) | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets the value associated with the specified key (CLR object's field or property name) regardless of the type.
If the specified key is not found, returns the given default value.
Namespace:
Telogis.GeoBase.Serialization
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public Object Get(
string key,
Object defaultValue
)
Public Function Get (
key As String,
defaultValue As Object
) As Object
Parameters
- key
- Type: SystemString
The key to look up. - defaultValue
- Type: SystemObject
An object to be returned if the specified key is not found.
Return Value
Type:
ObjectThe value that was looked up, or the given default value.
See Also