2 instantiations of DataObjectAttribute
System.ComponentModel.TypeConverter (2)
System\ComponentModel\DataObjectAttribute.cs (2)
11
public static readonly DataObjectAttribute DataObject = new
DataObjectAttribute
(true);
13
public static readonly DataObjectAttribute NonDataObject = new
DataObjectAttribute
(false);
6 references to DataObjectAttribute
netstandard (1)
netstandard.cs (1)
211
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.
DataObjectAttribute
))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
197
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.
DataObjectAttribute
))]
System.ComponentModel.TypeConverter (4)
System\ComponentModel\DataObjectAttribute.cs (4)
11
public static readonly
DataObjectAttribute
DataObject = new DataObjectAttribute(true);
13
public static readonly
DataObjectAttribute
NonDataObject = new DataObjectAttribute(false);
15
public static readonly
DataObjectAttribute
Default = NonDataObject;
35
return (obj is
DataObjectAttribute
other) && (other.IsDataObject == IsDataObject);