System.JSON.Readers.TJsonReader.Value

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Value: TValue read FValue;

C++

__property System::Rtti::TValue Value = {read=FValue};

Properties

Type Visibility Source Unit Parent
property public
System.JSON.Readers.pas
System.JSON.Readers.hpp
System.JSON.Readers TJsonReader

Description

Value of the JSON token where the reader is.

The type of a token determines the type of its value, which determines the method of Value that you must use to access the value of the token. For example, if TokenType is PropertyName, you must call Value.AsString to access a property name.

See Also