3 instantiations of InheritanceAttribute
System.ComponentModel.TypeConverter (3)
System\ComponentModel\InheritanceAttribute.cs (3)
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);
13 references to InheritanceAttribute
netstandard (1)
netstandard.cs (1)
339[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.InheritanceAttribute))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
325[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.InheritanceAttribute))]
System.ComponentModel.TypeConverter (11)
System\ComponentModel\Container.cs (3)
232InheritanceAttribute inheritanceAttribute = (InheritanceAttribute)TypeDescriptor.GetAttributes(s.Component)[typeof(InheritanceAttribute)]!;
System\ComponentModel\Design\IInheritanceService.cs (2)
19/// value <see cref='System.ComponentModel.InheritanceAttribute.NotInherited'/>. 22InheritanceAttribute GetInheritanceAttribute(IComponent component);
System\ComponentModel\InheritanceAttribute.cs (6)
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); 46public static readonly InheritanceAttribute Default = NotInherited; 87if (!(value is InheritanceAttribute)) 92InheritanceLevel valueLevel = ((InheritanceAttribute)value).InheritanceLevel;