VisitReturnCode
Internal return code used during path visitation.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Enum
- Namespace: Unity.Properties
- Assembly: UnityEngine.PropertiesModule
public enum VisitReturnCode
Fields
Value | Description |
|---|---|
| AccessViolation | Failed to set value at path because it is read-only. |
| InvalidCast | Failed to reinterpret the target value as the requested type. |
| InvalidContainerType | The given container type is not valid for visitation. |
| InvalidPath | Failed to resolve some part of the path (e.g. Name, Index or Key). |
| MissingPropertyBag | No property bag was found for the given container type. |
| NullContainer | The container being visited was null. |
| Ok | The visitation resolved successfully. |