17 implementations of GetEvents
System.ComponentModel.TypeConverter (5)
System\ComponentModel\CustomTypeDescriptor.cs (1)
156public virtual EventDescriptorCollection GetEvents(Attribute[]? attributes)
System\ComponentModel\TypeDescriptor.cs (4)
2848EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes) 3175EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes) 3650EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes) 4061public 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)
651EventDescriptorCollection 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)
2505EventDescriptorCollection 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)
1282EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attributes) => EventDescriptorCollection.Empty;
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1260EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[]? attrs) => TypeDescriptor.GetEvents(DataGridViewColumn, attrs!);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ComponentModel\Com2Interop\COM2FontConverterTests.cs (1)
130public EventDescriptorCollection GetEvents(Attribute[]? attributes) => throw new NotImplementedException();
System\Windows\Forms\ListBindingHelperTests.cs (1)
849public EventDescriptorCollection GetEvents(Attribute[] attributes)
14 references to GetEvents
System.ComponentModel.TypeConverter (9)
System\ComponentModel\CustomTypeDescriptor.cs (1)
160return _parent.GetEvents(attributes);
System\ComponentModel\TypeDescriptor.cs (8)
1219results = typeDesc.GetEvents(attributes); 1225ICollection extResults = extDesc.GetEvents(attributes); 1238results = typeDesc.GetEvents(attributes); 1243ICollection extResults = extDesc.GetEvents(attributes); 3177EventDescriptorCollection events = _primary.GetEvents(attributes) ?? _secondary.GetEvents(attributes); 3668EventDescriptorCollection evts = desc.GetEvents(attributes); 4077events = desc.GetEvents(attributes);
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
259return targetAwareDescriptor.GetEvents(attributes);
System.Windows.Forms.Tests (4)
System\Windows\Forms\AxHostTests.cs (4)
2687EventDescriptorCollection events = customTypeDescriptor.GetEvents(attributes); 2693events = customTypeDescriptor.GetEvents(attributes); 2713EventDescriptorCollection events = customTypeDescriptor.GetEvents(attributes); 2722events = customTypeDescriptor.GetEvents(attributes);