![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <NetResult.h>
Inheritance diagram for UE::Net::FNetResult:Classes | |
| struct | FConstIterator |
Public Member Functions | |
| FNetResult (const FNetResult &)=default | |
| FNetResult & | operator= (const FNetResult &)=default |
| FNetResult (FNetResult &&)=default | |
| FNetResult & | operator= (FNetResult &&)=default |
| ~FNetResult ()=default | |
| bool | operator== (const FNetResult &A) const |
| bool | operator!= (const FNetResult &A) const |
| NETCORE_API FString | DynamicToString (ENetResultString ConversionType=ENetResultString::WithoutChain) const |
| void | AddChainResult (FNetResult &&InResult) |
| template<typename T , typename = typename TEnableIf<TIsEnum<T>::Value>::Type> | |
| void | AddChainResult (TNetResult< T > &&InResult) |
| template<typename ResultEnum , typename = typename TEnableIf<TIsEnum<ResultEnum>::Value>::Type> | |
| bool | HasChainResult (ResultEnum A) const |
Friends | |
| template<typename > | |
| struct | TNetResult |
| template<typename T , typename > | |
| TNetResult< T > * | Cast (FNetResult *InResult) |
| template<typename T , typename > | |
| const TNetResult< T > * | Cast (const FNetResult *InResult) |
| uint32 | GetTypeHash (FNetResult const &Hash) |
Base/non-templatized implementation for TNetResult
|
default |
|
default |
|
default |
|
inline |
Chains a new result to an existing result, putting the new result at the end of the chain.
| InResult | The result to chain to this one. Should use MoveTemp. |
|
inline |
Chains a new result to an existing result, putting the new result at the end of the chain.
| InResult | The result to chain to this one. Should use MoveTemp. |
| FString UE::Net::FNetResult::DynamicToString | ( | ENetResultString | ConversionType = ENetResultString::WithoutChain | ) | const |
Use UEnum reflection to convert result to human readable string (ExportText style). Use ToString instead, when casting is possible.
| ConversionType | The type of string conversion to perform (e.g. whether or not to include the whole chain of results) |
|
inline |
Determines whether the specified enum result is contained within this result chain NOTE: Does not check the error code
| A | The result to search for |
|
inline |
|
default |
|
default |
|
inline |
Operators
|
friend |
Casts an FNetResult to a TNetResult<T>, with enum type checking
| InResult | The FNetResult to cast |
|
friend |
Casts an FNetResult to a TNetResult<T>, with enum type checking
| InResult | The FNetResult to cast |
|
friend |
|
friend |