IsType
This enum defines the matching criteria for type comparisons, allowing for exact matches, subclass relationships, or a definitive non-match.
Attributes
| Attribute | Type | Description |
|---|---|---|
| Exact | enum variant | Specifies that the type check must match the exact class provided without considering subclasses. |
| Subclass | enum variant | Specifies that the type check should succeed if the object is an instance of the class or any of its derived subclasses. |
| False | enum variant | Disables the type check entirely, effectively ignoring type constraints for the operation. |