IFromJson.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
Assembly: Microsoft.SharePoint.Client.Runtime (in Microsoft.SharePoint.Client.Runtime.dll)
Syntax
'Declaration
Function CustomFromJson ( _
reader As JsonReader _
) As Boolean
'Usage
Dim instance As IFromJson
Dim reader As JsonReader
Dim returnValue As Boolean
returnValue = instance.CustomFromJson(reader)
bool CustomFromJson(
JsonReader reader
)
Parameters
reader
Type: Microsoft.SharePoint.Client.JsonReaderThe JsonReader object used to read the 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.