Home
last modified time | relevance | path

Searched refs:EventDescriptorCollection (Results 1 – 25 of 149) sorted by relevance

123456

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/
H A DEventDescriptorCollection.cs18 public class EventDescriptorCollection : ICollection, IList class
30 …public static readonly EventDescriptorCollection Empty = new EventDescriptorCollection(null, true);
37 public EventDescriptorCollection(EventDescriptor[] events) in EventDescriptorCollection() method in System.ComponentModel.EventDescriptorCollection
314 public virtual EventDescriptorCollection Sort() in Sort()
316 return new EventDescriptorCollection(_events, Count, _namedSort, _comparer); in Sort()
326 public virtual EventDescriptorCollection Sort(string[] names) in Sort()
328 return new EventDescriptorCollection(_events, Count, names, _comparer); in Sort()
337 public virtual EventDescriptorCollection Sort(string[] names, IComparer comparer) in Sort()
339 return new EventDescriptorCollection(_events, Count, names, comparer); in Sort()
348 public virtual EventDescriptorCollection Sort(IComparer comparer) in Sort()
[all …]
H A DCustomTypeDescriptor.cs123 public virtual EventDescriptorCollection GetEvents() in GetEvents()
130 return EventDescriptorCollection.Empty; in GetEvents()
140 public virtual EventDescriptorCollection GetEvents(Attribute[] attributes) in GetEvents()
147 return EventDescriptorCollection.Empty; in GetEvents()
H A DTypeDescriptor.cs1010 return new EventDescriptorCollection(null, true); in GetEvents()
1025 return new EventDescriptorCollection(null, true); in GetEvents()
1045 public static EventDescriptorCollection GetEvents(object component) in GetEvents()
1078 return new EventDescriptorCollection(null, true); in GetEvents()
1146 EventDescriptorCollection evts = results as EventDescriptorCollection; in GetEvents()
1151 evts = new EventDescriptorCollection(eventArray, true); in GetEvents()
2744 EventDescriptorCollection ICustomTypeDescriptor.GetEvents() in ICustomTypeDescriptor.GetEvents()
3057 EventDescriptorCollection ICustomTypeDescriptor.GetEvents() in ICustomTypeDescriptor.GetEvents()
3473 EventDescriptorCollection events = desc.GetEvents(); in ICustomTypeDescriptor.GetEvents()
3810 EventDescriptorCollection events; in ICustomTypeDescriptor.GetEvents()
[all …]
H A DICustomTypeDescriptor.cs51 EventDescriptorCollection GetEvents(); in GetEvents()
57 EventDescriptorCollection GetEvents(Attribute[] attributes); in GetEvents()
H A DIComNativeDescriptorHandler.cs51 EventDescriptorCollection GetEvents(object component); in GetEvents()
55 EventDescriptorCollection GetEvents(object component, Attribute[] attributes); in GetEvents()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/componentmodel/
H A DEventDescriptorCollection.cs52 public class EventDescriptorCollection : ICollection, IList { class
65 …public static readonly EventDescriptorCollection Empty = new EventDescriptorCollection(null, true);
72 public EventDescriptorCollection(EventDescriptor[] events) { in EventDescriptorCollection() method in System.ComponentModel.EventDescriptorCollection
88 public EventDescriptorCollection(EventDescriptor[] events, bool readOnly) : this(events) { in EventDescriptorCollection() method in System.ComponentModel.EventDescriptorCollection
317 public virtual EventDescriptorCollection Sort() { in Sort()
328 public virtual EventDescriptorCollection Sort(string[] names) { in Sort()
329 … return new EventDescriptorCollection(this.events, this.eventCount, names, this.comparer); in Sort()
338 public virtual EventDescriptorCollection Sort(string[] names, IComparer comparer) { in Sort()
339 return new EventDescriptorCollection(this.events, this.eventCount, names, comparer); in Sort()
348 public virtual EventDescriptorCollection Sort(IComparer comparer) { in Sort()
[all …]
H A DCustomTypeDescriptor.cs155 public virtual EventDescriptorCollection GetEvents() in GetEvents()
162 return EventDescriptorCollection.Empty; in GetEvents()
172 public virtual EventDescriptorCollection GetEvents(Attribute[] attributes) in GetEvents()
179 return EventDescriptorCollection.Empty; in GetEvents()
H A DDebugTypeDescriptor.cs686 return new EventDescriptorCollection(null, true); in GetEvents()
700 return new EventDescriptorCollection(null, true); in GetEvents()
744 return new EventDescriptorCollection(null, true); in GetEvents()
759 return new EventDescriptorCollection(null, true); in GetEvents()
1066 private EventDescriptorCollection events;
1658 EventDescriptorCollection filteredEvents = events; in GetEvents()
1670 EventDescriptorCollection savedEvents = null; in GetEvents()
1673 … savedEvents = (EventDescriptorCollection)ds.GetValue(typeof(EventDescriptorCollection)); in GetEvents()
1724 …internal EventDescriptorCollection FilterEvents(object component, Attribute[] attributes, EventDes… in FilterEvents()
1725 EventDescriptorCollection filteredEvents = events; in FilterEvents()
[all …]
H A DICustomTypeDescriptor.cs66 EventDescriptorCollection GetEvents(); in GetEvents()
72 EventDescriptorCollection GetEvents(Attribute[] attributes); in GetEvents()
H A DIComNativeDescriptorHandler.cs53 EventDescriptorCollection GetEvents(object component); in GetEvents()
57 EventDescriptorCollection GetEvents(object component, Attribute[] attributes); in GetEvents()
H A DTypeDescriptor.cs1734 return new EventDescriptorCollection(null, true); in GetEvents()
1749 return new EventDescriptorCollection(null, true); in GetEvents()
1801 return new EventDescriptorCollection(null, true); in GetEvents()
1869 EventDescriptorCollection evts = results as EventDescriptorCollection; in GetEvents()
1875 evts = new EventDescriptorCollection(eventArray, true); in GetEvents()
3574 EventDescriptorCollection ICustomTypeDescriptor.GetEvents() in ICustomTypeDescriptor.GetEvents()
3820 EventDescriptorCollection ICustomTypeDescriptor.GetEvents() in ICustomTypeDescriptor.GetEvents()
3822 EventDescriptorCollection events = _primary.GetEvents(); in ICustomTypeDescriptor.GetEvents()
4246 EventDescriptorCollection events = desc.GetEvents(); in ICustomTypeDescriptor.GetEvents()
4567 EventDescriptorCollection events; in ICustomTypeDescriptor.GetEvents()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.ComponentModel/
H A DEventDescriptorCollectionTests.cs41 EventDescriptorCollection descriptors = EventDescriptorCollection.Empty; in Empty()
56 EventDescriptorCollection col = new EventDescriptorCollection ( in Find()
80 EventDescriptorCollection descriptors = new EventDescriptorCollection ( in Find_Key_Null()
130 EventDescriptorCollection col = new EventDescriptorCollection ( in Indexer2()
148 EventDescriptorCollection descriptors = new EventDescriptorCollection ( in ReadOnly()
156 EventDescriptorCollection descriptors; in Sort1()
157 EventDescriptorCollection sorted; in Sort1()
197 EventDescriptorCollection descriptors; in Sort2()
198 EventDescriptorCollection sorted; in Sort2()
255 EventDescriptorCollection sorted; in Sort3()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.TypeConverter/tests/
H A DEventDescriptorCollectionTests.cs16 Assert.Same(EventDescriptorCollection.Empty, EventDescriptorCollection.Empty); in EmptyCollectionShouldBeCached()
22 var collection = new EventDescriptorCollection(null); in CreateEmptyCollectionWithNull()
44 var collection = new EventDescriptorCollection(descriptors); in ConstructorTests()
61 var collection = new EventDescriptorCollection(descriptors, true); in ConstructorReadOnlyTests()
73 var collection = new EventDescriptorCollection(null, true); in ReadOnlyThrows()
91 var collection = new EventDescriptorCollection(descriptors); in CountTests()
H A DCustomTypeDescriptorTests.cs23 Assert.Same(EventDescriptorCollection.Empty, defaultCustomTypeDescriptor.GetEvents()); in ReturnsDefaultValues()
24 …Assert.Same(EventDescriptorCollection.Empty, defaultCustomTypeDescriptor.GetEvents(new Attribute[0… in ReturnsDefaultValues()
73 … private readonly EventDescriptorCollection _events1 = new EventDescriptorCollection(null);
74 … private readonly EventDescriptorCollection _events2 = new EventDescriptorCollection(null);
94 public EventDescriptorCollection GetEvents() => _events1; in GetEvents()
96 public EventDescriptorCollection GetEvents(Attribute[] attributes) => _events2;
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.Common/src/System/Data/
H A DDataViewManagerListItemTypeDescriptor.cs74EventDescriptorCollection ICustomTypeDescriptor.GetEvents() => new EventDescriptorCollection(null); in ICustomTypeDescriptor.GetEvents()
83 EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes) =>
84 new EventDescriptorCollection(null);
H A DDataRowView.cs235EventDescriptorCollection ICustomTypeDescriptor.GetEvents() => new EventDescriptorCollection(null); in ICustomTypeDescriptor.GetEvents()
236EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes) => new EventDesc…
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/
H A DDataViewManagerListItemTypeDescriptor.cs94 EventDescriptorCollection ICustomTypeDescriptor.GetEvents() { in ICustomTypeDescriptor.GetEvents()
95 return new EventDescriptorCollection(null); in ICustomTypeDescriptor.GetEvents()
105 EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes) { in ICustomTypeDescriptor.GetEvents()
106 return new EventDescriptorCollection(null); in ICustomTypeDescriptor.GetEvents()
H A DDataRowView.cs287 EventDescriptorCollection ICustomTypeDescriptor.GetEvents() { in ICustomTypeDescriptor.GetEvents()
288 return new EventDescriptorCollection(null); in ICustomTypeDescriptor.GetEvents()
291 EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes) { in ICustomTypeDescriptor.GetEvents()
292 return new EventDescriptorCollection(null); in ICustomTypeDescriptor.GetEvents()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/Common/
H A Ddbdatarecord.cs117 EventDescriptorCollection ICustomTypeDescriptor.GetEvents() { in ICustomTypeDescriptor.GetEvents()
118 return new EventDescriptorCollection(null); in ICustomTypeDescriptor.GetEvents()
121 EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes) { in ICustomTypeDescriptor.GetEvents()
122 return new EventDescriptorCollection(null); in ICustomTypeDescriptor.GetEvents()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.Common/src/System/Data/Common/
H A DDbDataRecord.cs86EventDescriptorCollection ICustomTypeDescriptor.GetEvents() => new EventDescriptorCollection(null); in ICustomTypeDescriptor.GetEvents()
88EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes) => new EventDesc…
H A DDataRecordInternal.cs340 EventDescriptorCollection ICustomTypeDescriptor.GetEvents() in ICustomTypeDescriptor.GetEvents()
342 return new EventDescriptorCollection(null); in ICustomTypeDescriptor.GetEvents()
345 EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes) in ICustomTypeDescriptor.GetEvents()
347 return new EventDescriptorCollection(null); in ICustomTypeDescriptor.GetEvents()
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/WebMatrix.Data/
H A DDynamicRecord.cs106 EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes) in ICustomTypeDescriptor.GetEvents()
108 return EventDescriptorCollection.Empty; in ICustomTypeDescriptor.GetEvents()
111 EventDescriptorCollection ICustomTypeDescriptor.GetEvents() in ICustomTypeDescriptor.GetEvents()
113 return EventDescriptorCollection.Empty; in ICustomTypeDescriptor.GetEvents()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/
H A DTargetFrameworkUtil.cs61 …private static ConcurrentDictionary<Type, EventDescriptorCollection> s_eventDescriptorCollectionDi…
62 new ConcurrentDictionary<Type, EventDescriptorCollection>();
383 internal static EventDescriptorCollection GetEvents(Type type) { in GetEvents()
388 EventDescriptorCollection result = null; in GetEvents()
397 private static EventDescriptorCollection GetEventDescriptorCollection(Type type) { in GetEventDescriptorCollection()
415 …private static EventDescriptorCollection GetFilteredEventDescriptorCollection(Type objectType, obj… in GetFilteredEventDescriptorCollection()
417 EventDescriptorCollection eventDescriptors = null; in GetFilteredEventDescriptorCollection()
435 return new EventDescriptorCollection(filteredEventDescriptors.ToArray()); in GetFilteredEventDescriptorCollection()
/dports/security/keepass-plugin-keepassrpc/keepassrpc-1.8.0/Jayrock/src/Jayrock.Json/Json/Conversion/
H A DCustomTypeDescriptor.cs46 using EventDescriptorCollection = System.ComponentModel.EventDescriptorCollection; typedef
325 public EventDescriptorCollection GetEvents() in GetEvents()
327 return EventDescriptorCollection.Empty; in GetEvents()
330 public EventDescriptorCollection GetEvents(Attribute[] attributes) in GetEvents()
332 return EventDescriptorCollection.Empty; in GetEvents()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities/System/Activities/
H A DDynamicActivity.cs181 EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes) in ICustomTypeDescriptor.GetEvents()
186 EventDescriptorCollection ICustomTypeDescriptor.GetEvents() in ICustomTypeDescriptor.GetEvents()
369 EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes) in ICustomTypeDescriptor.GetEvents()
374 EventDescriptorCollection ICustomTypeDescriptor.GetEvents() in ICustomTypeDescriptor.GetEvents()

123456