3 overrides of IsEnumDefined
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
102public sealed override bool IsEnumDefined(object value) => throw new NotSupportedException(SR.NotSupported_SignatureType);
System\RuntimeType.NativeAot.cs (1)
138public override bool IsEnumDefined(object value)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
265public override bool IsEnumDefined(object value)
2 references to IsEnumDefined
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Enum.cs (1)
522return enumType.IsEnumDefined(value);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
267return _typeInfo.IsEnumDefined(value);