Navigation
API > API/Runtime > API/Runtime/Json > API/Runtime/Json/FJsonPointer
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool TryGet
(
const TSharedPtr< FJsonObject >& RootObject, |
Attempt to retrieve the value specified by this Json Pointer from the provided Json Value. | JsonUtils/JsonPointer.h | |
bool TryGet
(
const TSharedPtr< FJsonValue >& RootValue, |
Attempt to retrieve the value specified by this Json Pointer from the provided Json Object. | JsonUtils/JsonPointer.h | |
bool TryGet
(
const TArray< TSharedPtr< FJsonValue > >& RootValues, |
Attempt to retrieve the value specified by this Json Pointer from the provided Json Array. | JsonUtils/JsonPointer.h |
TryGet(const TSharedPtr< FJsonObject > &, TSharedPtr< FJsonValue > &)
Description
Attempt to retrieve the value specified by this Json Pointer from the provided Json Value.
| Name | TryGet |
| Type | function |
| Header File | /Engine/Source/Runtime/Json/Public/JsonUtils/JsonPointer.h |
| Include Path | #include "JsonUtils/JsonPointer.h" |
| Source | /Engine/Source/Runtime/Json/Private/JsonUtils/JsonPointer.cpp |
bool TryGet
(
const TSharedPtr < FJsonObject > & RootObject,
TSharedPtr < FJsonValue > & OutValue
) const
TryGet(const TSharedPtr< FJsonValue > &, TSharedPtr< FJsonValue > &)
Description
Attempt to retrieve the value specified by this Json Pointer from the provided Json Object.
| Name | TryGet |
| Type | function |
| Header File | /Engine/Source/Runtime/Json/Public/JsonUtils/JsonPointer.h |
| Include Path | #include "JsonUtils/JsonPointer.h" |
| Source | /Engine/Source/Runtime/Json/Private/JsonUtils/JsonPointer.cpp |
bool TryGet
(
const TSharedPtr < FJsonValue > & RootValue,
TSharedPtr < FJsonValue > & OutValue
) const
TryGet(const TArray< TSharedPtr< FJsonValue > > &, TSharedPtr< FJsonValue > &)
Description
Attempt to retrieve the value specified by this Json Pointer from the provided Json Array.
| Name | TryGet |
| Type | function |
| Header File | /Engine/Source/Runtime/Json/Public/JsonUtils/JsonPointer.h |
| Include Path | #include "JsonUtils/JsonPointer.h" |
| Source | /Engine/Source/Runtime/Json/Private/JsonUtils/JsonPointer.cpp |
bool TryGet
(
const TArray < TSharedPtr < FJsonValue > > & RootValues,
TSharedPtr < FJsonValue > & OutValue
) const