JsonReader.ReadStringCollection method
Creates a StringCollection object 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
Assembly: Microsoft.SharePoint.Client.Runtime (in Microsoft.SharePoint.Client.Runtime.dll)
Syntax
'Declaration
Public Function ReadStringCollection As StringCollection
'Usage
Dim instance As JsonReader
Dim returnValue As StringCollection
returnValue = instance.ReadStringCollection()
public StringCollection ReadStringCollection()
Return value
Type: System.Collections.Specialized.StringCollection
StringCollection .
Remarks
This method calls the ReadStringArray() method to create a string array from the JSON string, and then converts the string array to a StringCollection object.