JsonReader.ReadObjectArray Method
Creates an Object array from the JSON string. This member is reserved for internal use and is not intended to be used directly from your code.
Namespace: Microsoft.SharePoint.Client
Assemblies: Microsoft.SharePoint.Client.Silverlight.Runtime (in Microsoft.SharePoint.Client.Silverlight.Runtime.dll); Microsoft.SharePoint.Client.Runtime (in Microsoft.SharePoint.Client.Runtime.dll)
Syntax
'Declaration
Public Function ReadObjectArray As Object()
'Usage
Dim instance As JsonReader
Dim returnValue As Object()
returnValue = instance.ReadObjectArray()
public Object[] ReadObjectArray()
Return Value
Type: []
Object .
Remarks
The JSON string that this method uses to create the Object array must start with the “[” and end with the “]”, such as “[value1,value2,…]”.