17 implementations of GetEvents
System.ComponentModel.TypeConverter (5)
System\ComponentModel\CustomTypeDescriptor.cs (1)
138public virtual EventDescriptorCollection GetEvents()
System\ComponentModel\TypeDescriptor.cs (4)
2852EventDescriptorCollection ICustomTypeDescriptor.GetEvents() 3177EventDescriptorCollection ICustomTypeDescriptor.GetEvents() 3621EventDescriptorCollection ICustomTypeDescriptor.GetEvents() 4020public 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)
2500EventDescriptorCollection 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)
1271EventDescriptorCollection ICustomTypeDescriptor.GetEvents()
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1258EventDescriptorCollection ICustomTypeDescriptor.GetEvents() => TypeDescriptor.GetEvents(DataGridViewColumn);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ComponentModel\Com2Interop\COM2FontConverterTests.cs (1)
126public EventDescriptorCollection GetEvents() => throw new NotImplementedException();
System\Windows\Forms\ListBindingHelperTests.cs (1)
944EventDescriptorCollection ICustomTypeDescriptor.GetEvents()
11 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)
3179EventDescriptorCollection events = _primary.GetEvents() ?? _secondary.GetEvents(); 3634EventDescriptorCollection events = desc.GetEvents(); 4036events = desc.GetEvents();
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
256return targetAwareDescriptor.GetEvents();
System.Windows.Forms.Tests (4)
System\Windows\Forms\AxHostTests.cs (4)
2633EventDescriptorCollection events = customTypeDescriptor.GetEvents(); 2639events = customTypeDescriptor.GetEvents(); 2658EventDescriptorCollection events = customTypeDescriptor.GetEvents(); 2667events = customTypeDescriptor.GetEvents();