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