10 references to InheritanceLevel
System (9)
compmod\system\componentmodel\Container.cs (1)
252
if(inheritanceAttribute.InheritanceLevel !=
InheritanceLevel
.InheritedReadOnly) {
compmod\system\componentmodel\design\InheritanceAttribute.cs (8)
20
private readonly
InheritanceLevel
inheritanceLevel;
28
public static readonly InheritanceAttribute Inherited = new InheritanceAttribute(
InheritanceLevel
.Inherited);
37
public static readonly InheritanceAttribute InheritedReadOnly = new InheritanceAttribute(
InheritanceLevel
.InheritedReadOnly);
45
public static readonly InheritanceAttribute NotInherited = new InheritanceAttribute(
InheritanceLevel
.NotInherited);
68
public InheritanceAttribute(
InheritanceLevel
inheritanceLevel) {
78
public
InheritanceLevel
InheritanceLevel {
98
InheritanceLevel
valueLevel = ((InheritanceAttribute)value).InheritanceLevel;
126
return TypeDescriptor.GetConverter(typeof(
InheritanceLevel
)).ConvertToString(InheritanceLevel);
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Binding.cs (1)
528
if (attr != null && attr.InheritanceLevel !=
InheritanceLevel
.NotInherited) {