3 instantiations of HelpKeywordAttribute
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\HelpKeywordAttribute.cs (1)
50public static readonly HelpKeywordAttribute Default = new HelpKeywordAttribute();
System.Windows.Forms.Design (2)
System\ComponentModel\Design\Serialization\CodeDomDesignerLoader.ModifiersExtenderProvider.cs (2)
66[HelpKeyword("Designer_GenerateMember")] 92[HelpKeyword("Designer_Modifiers")]
10 references to HelpKeywordAttribute
netstandard (1)
netstandard.cs (1)
247[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.HelpKeywordAttribute))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
233[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.HelpKeywordAttribute))]
System.ComponentModel.TypeConverter (3)
System\ComponentModel\Design\HelpKeywordAttribute.cs (3)
50public static readonly HelpKeywordAttribute Default = new HelpKeywordAttribute(); 93if ((obj != null) && (obj is HelpKeywordAttribute)) 95return ((HelpKeywordAttribute)obj).HelpKeyword == HelpKeyword;
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
68if (PropertyDescriptor.TryGetAttribute(out HelpKeywordAttribute? helpAttribute) &&
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (1)
152if (TypeDescriptorHelper.TryGetAttribute(Target, out HelpKeywordAttribute? helpAttribute)
System.Windows.Forms.Design (3)
System\ComponentModel\Design\SelectionService.cs (3)
235HelpKeywordAttribute? contextAttribute = (HelpKeywordAttribute?)TypeDescriptor.GetAttributes(component)[typeof(HelpKeywordAttribute)];