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