15 implementations of GetEvents
System.ComponentModel.TypeConverter (5)
System\ComponentModel\CustomTypeDescriptor.cs (1)
156public virtual EventDescriptorCollection GetEvents(Attribute[]? attributes)
System\ComponentModel\TypeDescriptor.cs (4)
2846EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes) 3177EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes) 3652EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes) 4063public EventDescriptorCollection GetEvents(Attribute[]? attributes)
System.Data.Common (5)
System\Data\Common\DataRecordInternal.cs (1)
350EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes)
System\Data\Common\DbConnectionStringBuilder.cs (1)
654EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes)
System\Data\Common\DbDataRecord.cs (1)
94EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes) => new EventDescriptorCollection(null);
System\Data\DataRowView.cs (1)
251EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes) => new EventDescriptorCollection(null);
System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
88EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes) =>
System.Windows.Forms (3)
System\Windows\Forms\ActiveX\AxHost.cs (1)
2502EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes)
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.ComTypeDescriptor.cs (1)
52EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes) => new(null);
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.NullTypeDescriptor.cs (1)
31EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes) => EventDescriptorCollection.Empty;
System.Windows.Forms.Design (2)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
1290EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes) => EventDescriptorCollection.Empty;
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1254EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attrs) => TypeDescriptor.GetEvents(DataGridViewColumn, attrs!);
10 references to GetEvents
System.ComponentModel.TypeConverter (9)
System\ComponentModel\CustomTypeDescriptor.cs (1)
160return _parent.GetEvents(attributes);
System\ComponentModel\TypeDescriptor.cs (8)
1228results = typeDesc.GetEvents(attributes); 1234ICollection extResults = extDesc.GetEvents(attributes); 1247results = typeDesc.GetEvents(attributes); 1252ICollection extResults = extDesc.GetEvents(attributes); 3179EventDescriptorCollection events = _primary.GetEvents(attributes) ?? _secondary.GetEvents(attributes); 3670EventDescriptorCollection evts = desc.GetEvents(attributes); 4079events = desc.GetEvents(attributes);
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
259return targetAwareDescriptor.GetEvents(attributes);