10 overrides of GetEvents
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
485
public override EventInfo[]
GetEvents
(BindingFlags bindingAttr)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
212
public override EventInfo[]
GetEvents
(BindingFlags bindingAttr) { throw new NotSupportedException(); }
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
149
public override EventInfo[]
GetEvents
(BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_ModifiedType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
119
public sealed override EventInfo[]
GetEvents
(BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
124
public override EventInfo[]
GetEvents
(BindingFlags bindingAttr) => typeImpl.GetEvents(bindingAttr);
System\RuntimeType.NativeAot.cs (1)
722
public override EventInfo[]
GetEvents
(BindingFlags bindingAttr)
System.Private.Reflection.Execution (1)
Internal\Reflection\Execution\TypeLoader\ConstraintValidatorSupport.cs (1)
151
public override EventInfo[]
GetEvents
(BindingFlags bindingAttr) { Debug.Assert(false); throw NotImplemented.ByDesign; }
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
323
public override EventInfo[]
GetEvents
(BindingFlags bindingAttr)
System.Reflection.Emit (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
485
public override EventInfo[]
GetEvents
(BindingFlags bindingAttr)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\RuntimeTypeInfo.BindingFlags.cs (1)
46
public sealed override EventInfo[]
GetEvents
(BindingFlags bindingAttr) => Query<EventInfo>(bindingAttr).ToArray();
13 references to GetEvents
ILCompiler.Compiler (1)
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
147
/// <see cref="System.Type.
GetEvents
(System.Reflection.BindingFlags)"/>
illink (1)
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
147
/// <see cref="System.Type.
GetEvents
(System.Reflection.BindingFlags)"/>
ILLink.RoslynAnalyzer (1)
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
147
/// <see cref="System.Type.
GetEvents
(System.Reflection.BindingFlags)"/>
System.ComponentModel.TypeConverter (1)
System\ComponentModel\TrimSafeReflectionHelper.cs (1)
15
public static EventInfo[] GetEvents(Type type, BindingFlags bindingAttr) => type.
GetEvents
(bindingAttr);
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\RuntimeReflectionExtensions.cs (1)
52
return type.
GetEvents
(Everything);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
124
public override EventInfo[] GetEvents(BindingFlags bindingAttr) => typeImpl.
GetEvents
(bindingAttr);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeInfo.cs (1)
57
get =>
GetEvents
(DeclaredOnlyLookup);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
214
public virtual EventInfo[] GetEvents() =>
GetEvents
(DefaultLookup);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.Helpers.cs (1)
262
e =
GetEvents
(bindingAttr);
System\Reflection\Runtime\BindingFlagSupport\EventPolicies.cs (1)
24
return type.
GetEvents
(DeclaredOnlyLookup);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
325
return _typeInfo.
GetEvents
(bindingAttr);
System.Reflection.TypeExtensions (1)
System\Reflection\TypeExtensions.cs (1)
93
return type.
GetEvents
(bindingAttr);
System.Xaml (1)
System\Xaml\Schema\TypeReflector.cs (1)
471
EventInfo[] eventList = UnderlyingType.
GetEvents
(AllProperties_BF);