3 instantiations of ImmutableObjectAttribute
System (2)
compmod\system\componentmodel\ImmutableObjectAttribute.cs (2)
19public static readonly ImmutableObjectAttribute Yes = new ImmutableObjectAttribute(true); 27public static readonly ImmutableObjectAttribute No = new ImmutableObjectAttribute(false);
System.Drawing (1)
commonui\System\Drawing\Image.cs (1)
39ImmutableObject(true)
7 references to ImmutableObjectAttribute
System (5)
compmod\system\componentmodel\ImmutableObjectAttribute.cs (5)
19public static readonly ImmutableObjectAttribute Yes = new ImmutableObjectAttribute(true); 27public static readonly ImmutableObjectAttribute No = new ImmutableObjectAttribute(false); 33public static readonly ImmutableObjectAttribute Default = No; 62ImmutableObjectAttribute other = obj as ImmutableObjectAttribute;
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (2)
502bool isImmutableReadOnly = TypeDescriptor.GetAttributes(this.PropertyType)[typeof(ImmutableObjectAttribute)].Equals(ImmutableObjectAttribute.Yes);