4 instantiations of RecommendedAsConfigurableAttribute
System.ComponentModel.TypeConverter (2)
System\ComponentModel\RecommendedAsConfigurableAttribute.cs (2)
34public static readonly RecommendedAsConfigurableAttribute No = new RecommendedAsConfigurableAttribute(false); 40public static readonly RecommendedAsConfigurableAttribute Yes = new RecommendedAsConfigurableAttribute(true);
System.Data.Common (1)
System\Data\Common\DbConnection.cs (1)
25[RecommendedAsConfigurable(true)]
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
90[System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
9 references to RecommendedAsConfigurableAttribute
netstandard (1)
netstandard.cs (1)
400[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.RecommendedAsConfigurableAttribute))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
386[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.RecommendedAsConfigurableAttribute))]
System.ComponentModel.TypeConverter (7)
System\ComponentModel\RecommendedAsConfigurableAttribute.cs (7)
17/// the <see cref='System.ComponentModel.RecommendedAsConfigurableAttribute'/> class. 34public static readonly RecommendedAsConfigurableAttribute No = new RecommendedAsConfigurableAttribute(false); 40public static readonly RecommendedAsConfigurableAttribute Yes = new RecommendedAsConfigurableAttribute(true); 43/// Specifies the default value for the <see cref='System.ComponentModel.RecommendedAsConfigurableAttribute'/>, which is <see cref='System.ComponentModel.RecommendedAsConfigurableAttribute.No'/>. This <see langword='static '/>field is 46public static readonly RecommendedAsConfigurableAttribute Default = No; 55return obj is RecommendedAsConfigurableAttribute other && other.RecommendedAsConfigurable == RecommendedAsConfigurable;