10 references to InheritanceLevel
netstandard (1)
netstandard.cs (1)
340[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.InheritanceLevel))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
326[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.InheritanceLevel))]
System.ComponentModel.TypeConverter (8)
System\ComponentModel\Container.cs (1)
233if (inheritanceAttribute.InheritanceLevel != InheritanceLevel.InheritedReadOnly)
System\ComponentModel\InheritanceAttribute.cs (7)
21public static readonly InheritanceAttribute Inherited = new InheritanceAttribute(InheritanceLevel.Inherited); 30public static readonly InheritanceAttribute InheritedReadOnly = new InheritanceAttribute(InheritanceLevel.InheritedReadOnly); 38public static readonly InheritanceAttribute NotInherited = new InheritanceAttribute(InheritanceLevel.NotInherited); 62public InheritanceAttribute(InheritanceLevel inheritanceLevel) 73public InheritanceLevel InheritanceLevel { get; } 92InheritanceLevel valueLevel = ((InheritanceAttribute)value).InheritanceLevel; 109public override string ToString() => TypeDescriptor.GetConverterTrimUnsafe(typeof(InheritanceLevel)).ConvertToString(InheritanceLevel)!;