ClientObject.CustomFromJson Method
Returns a Boolean value that indicates whether custom code was used to populate an object. 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
Public Overridable Function CustomFromJson ( _
reader As JsonReader _
) As Boolean
'Usage
Dim instance As ClientObject
Dim reader As JsonReader
Dim returnValue As Boolean
returnValue = instance.CustomFromJson(reader)
public virtual bool CustomFromJson(
JsonReader reader
)
Parameters
reader
Type: Microsoft.SharePoint.Client.JsonReaderThe JsonReader object used to read the JavaScript Object Notation (JSON) data to populate an object.
Return Value
Type: System.Boolean
true if the object was populated from JSON by custom code; false if the object was populated by auto-generated code.
Implements
IFromJson.CustomFromJson(JsonReader)