Navigation
API > API/Runtime > API/Runtime/CrashReportCore
References
| Module | CrashReportCore |
| Header | /Engine/Source/Runtime/CrashReportCore/Public/CrashDescription.h |
| Include | #include "CrashDescription.h" |
Syntax
struct FCrashProperty
Remarks
Simple crash property. Only for string values.
Variables
| Type | Name | Description | |
|---|---|---|---|
| bool | bSet | ||
| FString | CachedValue | Cached value of the property. | |
| FString | MainCategory | Main category in the crash context. | |
| FPrimaryCrashProperties * | Owner | Owner of the property. | |
| FString | SecondCategory | Second category in the crash context. |
Constructors
| Type | Name | Description | |
|---|---|---|---|
FCrashProperty
(
const FString& InMainCategory, |
Initialization constructor. |
Functions
| Type | Name | Description | |
|---|---|---|---|
| bool | AsBool () |
Getter for bool. | |
| int64 | AsInt64 () |
Getter for int64. | |
| const FString & | AsString () |
Getter for string, default. |
Operators
| Type | Name | Description | |
|---|---|---|---|
| FCrashProperty & | Assignment operator for string. | ||
| FCrashProperty & | Assignment operator for TCHAR*. | ||
| FCrashProperty & | Assignment operator for arrays. | ||
| FCrashProperty & | operator=
(
const bool NewValue |
Assignment operator for bool. | |
| FCrashProperty & | Assignment operator for int64. |