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