AddinPlugin.InitOnePropertyFromJson method
Initializes one property of the client object based on JavaScript Object Notation (JSON) data from the server.
Namespace: Microsoft.SharePoint.Client.Publishing
Assembly: Microsoft.SharePoint.Client.Publishing (in Microsoft.SharePoint.Client.Publishing.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 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.