17 implementations of GetEvents
System.ComponentModel.TypeConverter (5)
System\ComponentModel\CustomTypeDescriptor.cs (1)
138public virtual EventDescriptorCollection GetEvents()
System\ComponentModel\TypeDescriptor.cs (4)
2842EventDescriptorCollection ICustomTypeDescriptor.GetEvents() 3163EventDescriptorCollection ICustomTypeDescriptor.GetEvents() 3607EventDescriptorCollection ICustomTypeDescriptor.GetEvents() 4006public EventDescriptorCollection GetEvents()
System.Data.Common (5)
System\Data\Common\DataRecordInternal.cs (1)
344EventDescriptorCollection ICustomTypeDescriptor.GetEvents()
System\Data\Common\DbConnectionStringBuilder.cs (1)
643EventDescriptorCollection 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)
128public EventDescriptorCollection GetEvents() => throw new NotImplementedException();
System\Windows\Forms\ListBindingHelperTests.cs (1)
942EventDescriptorCollection ICustomTypeDescriptor.GetEvents()
19 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)
3165EventDescriptorCollection events = _primary.GetEvents() ?? _secondary.GetEvents(); 3620EventDescriptorCollection events = desc.GetEvents(); 4022events = desc.GetEvents();
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
256return targetAwareDescriptor.GetEvents();
System.Windows.Forms.Tests (12)
System\Windows\Forms\AxHostTests.cs (12)
2631EventDescriptorCollection events = customTypeDescriptor.GetEvents(); 2637events = customTypeDescriptor.GetEvents(); 2656EventDescriptorCollection events = customTypeDescriptor.GetEvents(); 2665events = customTypeDescriptor.GetEvents(); 2736EventDescriptorCollection events = customTypeDescriptor.GetEvents([new CustomAttribute()]); 2742events = customTypeDescriptor.GetEvents([new CustomAttribute()]); 2761EventDescriptorCollection events = customTypeDescriptor.GetEvents([new CustomAttribute()]); 2770events = customTypeDescriptor.GetEvents([new CustomAttribute()]); 2784EventDescriptorCollection events = customTypeDescriptor.GetEvents([new NoSuchAttribute()]); 2790events = customTypeDescriptor.GetEvents([new NoSuchAttribute()]); 2809EventDescriptorCollection events = customTypeDescriptor.GetEvents([new NoSuchAttribute()]); 2818events = customTypeDescriptor.GetEvents([new NoSuchAttribute()]);