Click or drag to resize

JSONArray Class

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
An object that represents an array of CLR objects in a format that can be easily serialized to a string and deserialized from a string. Each value in the array must be one of the following:
  • null
  • a JSONObject
  • another JSONArray
  • a string
  • a primitive type
Inheritance Hierarchy
SystemObject
  Telogis.GeoBase.SerializationJSONArray

Namespace:  Telogis.GeoBase.Serialization
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public class JSONArray : IList<Object>, 
	ICollection<Object>, IEnumerable<Object>, IEnumerable

The JSONArray type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyCount
The count of items in the array.
Public propertyIsReadOnly
Whether the array is read-only. Always false.
Public propertyItem
The item at the given index.
Top
Methods
  NameDescription
Public methodAdd
Adds an item to the array.
Public methodClear
Clears the array.
Public methodContains
Determines whether the array contains the given item.
Public methodCopyTo
Copies the array to the supplied array, starting at the given index.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetEnumerator
Returns an enumerator that iterates through the items in the array.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIndexOf
Returns the index of the given item.
Public methodInsert
Inserts an item at the given index.
Public methodRemove
Removes the given item from the array.
Public methodRemoveAt
Removes the item at the given index.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodValuesT
Returns this array's values using type T.
Top
See Also