ClientValueObjectCollection<T>.InitOnePropertyFromJson method
Initializes a property from JavaScript Object Notation (JSON).
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client.Runtime (in Microsoft.SharePoint.Client.Runtime.dll)
Syntax
'Declaration
Protected Overrides Function InitOnePropertyFromJson ( _
peekedName As String, _
reader As JsonReader _
) As Boolean
'Usage
Dim peekedName As String
Dim reader As JsonReader
Dim returnValue As Boolean
returnValue = Me.InitOnePropertyFromJson(peekedName, _
reader)
protected override bool InitOnePropertyFromJson(
string peekedName,
JsonReader reader
)
Parameters
peekedName
Type: System.StringThe name of the property to initialize.
reader
Type: Microsoft.SharePoint.Client.JsonReaderThe JsonReader object used to read the JavaScript Object Notation (JSON) data to initialize the returned result.
Return value
Type: System.Boolean
true if the property is initialized; otherwise, false.
See also
Reference
ClientValueObjectCollection<T> class