ClientObject.InitNonPropertyFieldFromJson method
Initializes a non-property field of the client object based on JavaScript Object Notation (JSON) data from the server. 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
Protected Overridable Sub InitNonPropertyFieldFromJson ( _
peekedName As String, _
reader As JsonReader _
)
'Usage
Dim peekedName As String
Dim reader As JsonReader
Me.InitNonPropertyFieldFromJson(peekedName, _
reader)
protected virtual void InitNonPropertyFieldFromJson(
string peekedName,
JsonReader reader
)
Parameters
peekedName
Type: System.StringThe name of the property to initialize.
reader
Type: Microsoft.SharePoint.Client.JsonReaderThe JsonReader that is used to initialize the property value from the JSON data from the server.