ClientObject.InitOnePropertyFromJson Method
Initializes one property of the client object based on 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
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
Protected Overridable 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 virtual bool InitOnePropertyFromJson(
string peekedName,
JsonReader reader
)
Parameters
peekedName
Type: System.StringThe name of the property to initialize.
reader
Type: Microsoft.SharePoint.Client.JsonReaderThe JsonReader to use to initialize the property value from the JSON data from the server.
Return Value
Type: System.Boolean
true if one property is initialized; otherwise false.