2 instantiations of RunInstallerAttribute
System.ComponentModel.TypeConverter (2)
System\ComponentModel\RunInstallerAttribute.cs (2)
35
public static readonly RunInstallerAttribute Yes = new
RunInstallerAttribute
(true);
43
public static readonly RunInstallerAttribute No = new
RunInstallerAttribute
(false);
8 references to RunInstallerAttribute
netstandard (1)
netstandard.cs (1)
406
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.
RunInstallerAttribute
))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
392
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.
RunInstallerAttribute
))]
System.ComponentModel.TypeConverter (6)
System\ComponentModel\RunInstallerAttribute.cs (6)
17
/// the <see cref='System.ComponentModel.
RunInstallerAttribute
'/> class.
35
public static readonly
RunInstallerAttribute
Yes = new RunInstallerAttribute(true);
43
public static readonly
RunInstallerAttribute
No = new RunInstallerAttribute(false);
46
/// Specifies the default visibility, which is <see cref='System.ComponentModel.
RunInstallerAttribute
.No'/>. This <see langword='static '/>field is
49
public static readonly
RunInstallerAttribute
Default = No;
58
return obj is
RunInstallerAttribute
other && other.RunInstaller == RunInstaller;