Click or drag to resize
Json.NET Schema

SchemaExtensionsValidate Method (JToken, JSchema, SchemaValidationEventHandler)

 
Validates the specified JToken.

Namespace:  Newtonsoft.Json.Schema
Assembly:  Newtonsoft.Json.Schema (in Newtonsoft.Json.Schema.dll) Version: 3.0.6
Syntax
C#
public static void Validate(
	this JToken source,
	JSchema schema,
	SchemaValidationEventHandler validationEventHandler
)

Parameters

source
Type: Newtonsoft.Json.LinqJToken
The source JToken to test.
schema
Type: Newtonsoft.Json.SchemaJSchema
The schema to test with.
validationEventHandler
Type: Newtonsoft.Json.SchemaSchemaValidationEventHandler
The validation event handler.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type JToken. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also