9 overrides of GetStandardValuesExclusive
System.CodeDom (2)
Microsoft\CSharp\CSharpModifierAttributeConverter.cs (1)
61public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) => true;
Microsoft\VisualBasic\VBModifierAttributeConverter.cs (1)
61public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) => true;
System.ComponentModel.TypeConverter (6)
System\ComponentModel\BooleanConverter.cs (1)
59public override bool GetStandardValuesExclusive(ITypeDescriptorContext? context) => true;
System\ComponentModel\CultureInfoConverter.cs (1)
214public override bool GetStandardValuesExclusive(ITypeDescriptorContext? context) => false;
System\ComponentModel\EnumConverter.cs (1)
317public override bool GetStandardValuesExclusive(ITypeDescriptorContext? context)
System\ComponentModel\NullableConverter.cs (1)
219public override bool GetStandardValuesExclusive(ITypeDescriptorContext? context)
System\ComponentModel\ReferenceConverter.cs (1)
174public override bool GetStandardValuesExclusive(ITypeDescriptorContext? context) => true;
System\ComponentModel\TypeListConverter.cs (1)
115public override bool GetStandardValuesExclusive(ITypeDescriptorContext? context) => true;
System.Data.Common (1)
System\Data\ColumnTypeConverter.cs (1)
157public override bool GetStandardValuesExclusive(ITypeDescriptorContext? context) => true;
3 references to GetStandardValuesExclusive
System.ComponentModel.TypeConverter (3)
System\ComponentModel\NullableConverter.cs (2)
223return UnderlyingTypeConverter.GetStandardValuesExclusive(context); 226return base.GetStandardValuesExclusive(context);
System\ComponentModel\TypeConverter.cs (1)
278public bool GetStandardValuesExclusive() => GetStandardValuesExclusive(null);