3 overrides of IsEnumDefined
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
98public sealed override bool IsEnumDefined(object value) => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\libraries\System.Private.CoreLib\src\System\RuntimeType.cs (1)
201public 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\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);