15 implementations of GetEvents
System.ComponentModel.TypeConverter (5)
System\ComponentModel\CustomTypeDescriptor.cs (1)
138public virtual EventDescriptorCollection GetEvents()
System\ComponentModel\TypeDescriptor.cs (4)
2840EventDescriptorCollection ICustomTypeDescriptor.GetEvents() 3165EventDescriptorCollection ICustomTypeDescriptor.GetEvents() 3609EventDescriptorCollection ICustomTypeDescriptor.GetEvents() 4008public EventDescriptorCollection GetEvents()
System.Data.Common (5)
System\Data\Common\DataRecordInternal.cs (1)
344EventDescriptorCollection ICustomTypeDescriptor.GetEvents()
System\Data\Common\DbConnectionStringBuilder.cs (1)
646EventDescriptorCollection ICustomTypeDescriptor.GetEvents()
System\Data\Common\DbDataRecord.cs (1)
91EventDescriptorCollection ICustomTypeDescriptor.GetEvents() => new EventDescriptorCollection(null);
System\Data\DataRowView.cs (1)
248EventDescriptorCollection ICustomTypeDescriptor.GetEvents() => new EventDescriptorCollection(null);
System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
78EventDescriptorCollection ICustomTypeDescriptor.GetEvents() => new EventDescriptorCollection(null);
System.Windows.Forms (3)
System\Windows\Forms\ActiveX\AxHost.cs (1)
2497EventDescriptorCollection ICustomTypeDescriptor.GetEvents()
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.ComTypeDescriptor.cs (1)
49EventDescriptorCollection ICustomTypeDescriptor.GetEvents() => new(null);
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.NullTypeDescriptor.cs (1)
29EventDescriptorCollection ICustomTypeDescriptor.GetEvents() => EventDescriptorCollection.Empty;
System.Windows.Forms.Design (2)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
1279EventDescriptorCollection ICustomTypeDescriptor.GetEvents()
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1252EventDescriptorCollection ICustomTypeDescriptor.GetEvents() => TypeDescriptor.GetEvents(DataGridViewColumn);
7 references to GetEvents
System.ComponentModel.TypeConverter (6)
System\ComponentModel\CustomTypeDescriptor.cs (1)
142return _parent.GetEvents();
System\ComponentModel\ICustomTypeDescriptor.cs (1)
121return GetEvents();
System\ComponentModel\TypeDescriptor.cs (4)
3167EventDescriptorCollection events = _primary.GetEvents() ?? _secondary.GetEvents(); 3622EventDescriptorCollection events = desc.GetEvents(); 4024events = desc.GetEvents();
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
256return targetAwareDescriptor.GetEvents();