3 overrides of GetEnumName
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
99public sealed override string GetEnumName(object value) => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\libraries\System.Private.CoreLib\src\System\RuntimeType.cs (1)
98public override string? GetEnumName(object value)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
180public override string? GetEnumName(object value)
2 references to GetEnumName
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Enum.cs (1)
90return enumType.GetEnumName(value);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
182return _typeInfo.GetEnumName(value);