|
| bool | TryGetBoolField (Json::FConstObject Object, const TCHAR *FieldName, bool &Out) |
| |
| template<typename T > |
| bool | TryConvertFromDouble (double Double, T &OutNumber) |
| |
| template<> |
| bool | TryConvertFromDouble< uint64 > (double Double, uint64 &OutNumber) |
| |
| template<> |
| bool | TryConvertFromDouble< int64 > (double Double, int64 &OutNumber) |
| |
| bool | TryGetNumberField (Json::FConstObject Object, const TCHAR *FieldName, int32 &Out) |
| |
| bool | TryGetNumberField (Json::FConstObject Object, const TCHAR *FieldName, uint32 &Out) |
| |
| bool | TryGetStringField (Json::FConstObject Object, const TCHAR *FieldName, FString &Out) |
| |
| bool | TryGetStringArrayField (Json::FConstObject Object, const TCHAR *FieldName, TArray< FString > &Out) |
| |
| bool | TryGetStringArrayField (Json::FConstObject Object, const TCHAR *FieldName, TArray< FName > &Out) |
| |
| bool | TryGetStringArrayFieldWithDeprecatedFallback (Json::FConstObject Object, const TCHAR *FieldName, const TCHAR *DeprecatedFieldName, TArray< FString > &OutArray) |
| |
| FText | GetArrayObjectTypeError (const TCHAR *FieldName, int32 Index) |
| |
| FText | GetArrayObjectChildParseError (const TCHAR *FieldName, int32 Index, const FText &PropagateError) |
| |
| bool | TryGetStringField (Json::FConstObject Object, const TCHAR *FieldName, FStringView &Out) |
| |
| template<typename TEnum > |
| bool | TryGetEnumArrayField (Json::FConstObject Object, const TCHAR *FieldName, TArray< TEnum > &OutArray) |
| |
| template<typename TEnum > |
| bool | TryGetEnumArrayFieldWithDeprecatedFallback (Json::FConstObject Object, const TCHAR *FieldName, const TCHAR *DeprecatedFieldName, TArray< TEnum > &OutArray) |
| |
| TOptional< FText > | Read (Json::FConstObject Object, FPluginManifest &Out) |
| |
| TOptional< FText > | Read (Json::FConstObject Object, FPluginDescriptor &Out) |
| |
| TOptional< FText > | Read (Json::FConstObject Object, FModuleDescriptor &Out) |
| |
| TOptional< FText > | Read (Json::FConstObject Object, FLocalizationTargetDescriptor &Out) |
| |
| TOptional< FText > | Read (Json::FConstObject Object, FPluginReferenceDescriptor &Out) |
| |
| TOptional< FText > | Read (Json::FConstObject Object, FPluginDisallowedDescriptor &Out) |
| |
| FCustomBuildSteps | ReadCustomBuildSteps (Json::FConstObject Object, const TCHAR *FieldName) |
| |
| template<typename FUNCTOR > |
| bool | ReadFromDefaultJsonHelper (const FJsonObject &Object, FUNCTOR &&Functor) |
| |
| template<typename TYPE > |
| bool | ReadFromDefaultJson (const FJsonObject &Object, TYPE &Out, FText *OutFailReason) |
| |
| template<typename TYPE > |
| TOptional< FText > | ReadArray (Json::FConstObject Object, const TCHAR *FieldName, TArray< TYPE > &OutArray) |
| |
| template<typename TYPE > |
| bool | ReadArrayFromDefaultJson (const FJsonObject &Object, const TCHAR *Name, TArray< TYPE > &OutArray, FText *OutFailReason) |
| |