13 overrides of GetEvents
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
483public override EventInfo[] GetEvents(BindingFlags bindingAttr)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
213public override EventInfo[] GetEvents(BindingFlags bindingAttr) { throw new NotSupportedException(); }
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
148public override EventInfo[] GetEvents(BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_ModifiedType);
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
115public sealed override EventInfo[] GetEvents(BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
122public override EventInfo[] GetEvents(BindingFlags bindingAttr) => typeImpl.GetEvents(bindingAttr);
src\System\Reflection\Emit\RuntimeEnumBuilder.cs (1)
201public override EventInfo[] GetEvents(BindingFlags bindingAttr)
src\System\Reflection\Emit\RuntimeGenericTypeParameterBuilder.cs (1)
151public override EventInfo[] GetEvents(BindingFlags bindingAttr) { throw new NotSupportedException(); }
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (1)
820public override EventInfo[] GetEvents(BindingFlags bindingAttr)
src\System\RuntimeType.CoreCLR.cs (1)
2655public override EventInfo[] GetEvents(BindingFlags bindingAttr)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
323public override EventInfo[] GetEvents(BindingFlags bindingAttr)
System.Reflection.Emit (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
483public override EventInfo[] GetEvents(BindingFlags bindingAttr)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\RuntimeTypeInfo.BindingFlags.cs (1)
46public sealed override EventInfo[] GetEvents(BindingFlags bindingAttr) => Query<EventInfo>(bindingAttr).ToArray();
System.Windows.Forms.Tests (1)
System\Windows\Forms\ListBindingHelperTests.cs (1)
844public override EventInfo[] GetEvents(BindingFlags bindingAttr)
14 references to GetEvents
illink (1)
ILLink.RoslynAnalyzer (1)
src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
141 /// <see cref="System.Type.GetEvents(System.Reflection.BindingFlags)"/>
Microsoft.CodeAnalysis.Test.Utilities (2)
Platform\Custom\MetadataSignatureHelper.cs (2)
690foreach (var @event in type.GetEvents(BINDING_FLAGS).OrderBy((member) => member.Name)) 748foreach (var @event in type.GetEvents(BINDING_FLAGS))
System.ComponentModel.TypeConverter (1)
System\ComponentModel\TrimSafeReflectionHelper.cs (1)
15public static EventInfo[] GetEvents(Type type, BindingFlags bindingAttr) => type.GetEvents(bindingAttr);
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Reflection\RuntimeReflectionExtensions.cs (1)
52return type.GetEvents(Everything);
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
122public override EventInfo[] GetEvents(BindingFlags bindingAttr) => typeImpl.GetEvents(bindingAttr);
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeInfo.cs (1)
57get => GetEvents(DeclaredOnlyLookup);
src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
214public virtual EventInfo[] GetEvents() => GetEvents(DefaultLookup);
src\libraries\System.Private.CoreLib\src\System\Type.Helpers.cs (1)
234e = GetEvents(bindingAttr);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
325return _typeInfo.GetEvents(bindingAttr);
System.Reflection.TypeExtensions (1)
System\Reflection\TypeExtensions.cs (1)
93return type.GetEvents(bindingAttr);
System.Xaml (1)
System\Xaml\Schema\TypeReflector.cs (1)
472EventInfo[] eventList = UnderlyingType.GetEvents(AllProperties_BF);
System.Xaml.Tests (1)
Common\CustomType.cs (1)
38return GetEventsResult.Or(typeImpl.GetEvents, bindingAttr);