Json.NET - Quick Starts & API Documentation
JsonValidatingReader Class
Namespaces ► Newtonsoft.Json ► JsonValidatingReader
Represents a reader that provides JsonSchema validation.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public class JsonValidatingReader : JsonReader, IJsonLineInfo
Public Class JsonValidatingReader _ Inherits JsonReader _ Implements IJsonLineInfo
public ref class JsonValidatingReader : public JsonReader, IJsonLineInfo
Members
All Members | Constructors | Methods | Properties | Events | |
|
|
|
Icon | Member | Description |
---|---|---|
JsonValidatingReader(JsonReader) |
Initializes a new instance of the JsonValidatingReader class that
validates the content returned from the given JsonReader.
|
|
Close()()()() |
Changes the JsonReader..::..State to Closed.
(Inherited from JsonReader.) |
|
CloseInput |
Gets or sets a value indicating whether the underlying stream or
TextReader should be closed when the reader is closed.
(Inherited from JsonReader.) |
|
Culture |
Gets or sets the culture used when reading JSON. Defaults to InvariantCulture.
(Inherited from JsonReader.) |
|
CurrentState |
Gets the current reader state.
(Inherited from JsonReader.) |
|
DateParseHandling |
Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
(Inherited from JsonReader.) |
|
DateTimeZoneHandling |
Get or set how DateTime time zones are handling when reading JSON.
(Inherited from JsonReader.) |
|
Depth |
Gets the depth of the current token in the JSON document.
(Overrides JsonReader.Depth.) |
|
Dispose(Boolean) |
Releases unmanaged and - optionally - managed resources
(Inherited from JsonReader.) |
|
Equals(Object) | (Inherited from Object.) |
|
Finalize()()()() |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.) |
|
GetHashCode()()()() |
Serves as a hash function for a particular type.
(Inherited from Object.) |
|
GetType()()()() |
Gets the Type of the current instance.
(Inherited from Object.) |
|
MaxDepth |
Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a JsonReaderException.
(Inherited from JsonReader.) |
|
MemberwiseClone()()()() |
Creates a shallow copy of the current Object.
(Inherited from Object.) |
|
Path |
Gets the path of the current JSON token.
(Overrides JsonReader.Path.) |
|
QuoteChar |
Gets the quotation mark character used to enclose the value of a string.
(Overrides JsonReader.QuoteChar.) |
|
Read()()()() |
Reads the next JSON token from the stream.
(Overrides JsonReader.Read()()()().) |
|
ReadAsBytes()()()() |
Reads the next JSON token from the stream as a array<Byte>[]()[][].
(Overrides JsonReader.ReadAsBytes()()()().) |
|
ReadAsDateTime()()()() |
Reads the next JSON token from the stream as a Nullable<(Of <(<'T>)>)>.
(Overrides JsonReader.ReadAsDateTime()()()().) |
|
ReadAsDateTimeOffset()()()() |
Reads the next JSON token from the stream as a Nullable<(Of <(<'T>)>)>.
(Overrides JsonReader.ReadAsDateTimeOffset()()()().) |
|
ReadAsDecimal()()()() |
Reads the next JSON token from the stream as a Nullable<(Of <(<'T>)>)>.
(Overrides JsonReader.ReadAsDecimal()()()().) |
|
ReadAsInt32()()()() |
Reads the next JSON token from the stream as a Nullable<(Of <(<'T>)>)>.
(Overrides JsonReader.ReadAsInt32()()()().) |
|
ReadAsString()()()() |
Reads the next JSON token from the stream as a String.
(Overrides JsonReader.ReadAsString()()()().) |
|
Reader |
Gets the JsonReader used to construct this JsonValidatingReader.
|
|
Schema |
Gets or sets the schema.
|
|
SetStateBasedOnCurrent()()()() |
Sets the state based on current token type.
(Inherited from JsonReader.) |
|
SetToken(JsonToken) |
Sets the current token.
(Inherited from JsonReader.) |
|
SetToken(JsonToken, Object) |
Sets the current token and value.
(Inherited from JsonReader.) |
|
Skip()()()() |
Skips the children of the current token.
(Inherited from JsonReader.) |
|
TokenType |
Gets the type of the current Json token.
(Overrides JsonReader.TokenType.) |
|
ToString()()()() | (Inherited from Object.) |
|
ValidationEventHandler |
Sets an event handler for receiving schema validation errors.
|
|
Value |
Gets the text value of the current Json token.
(Overrides JsonReader.Value.) |
|
ValueType |
Gets the Common Language Runtime (CLR) type for the current Json token.
(Overrides JsonReader.ValueType.) |
Inheritance Hierarchy
Object | ||
JsonReader | ||
JsonValidatingReader |