Skip to main content

IsType

This enum defines the matching criteria for type comparisons, allowing for exact matches, subclass relationships, or a definitive non-match.

Attributes

AttributeTypeDescription
Exactenum variantSpecifies that the type check must match the exact class provided without considering subclasses.
Subclassenum variantSpecifies that the type check should succeed if the object is an instance of the class or any of its derived subclasses.
Falseenum variantDisables the type check entirely, effectively ignoring type constraints for the operation.