7 overrides of GetEvents
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
430public override EventInfo[] GetEvents()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
192public override EventInfo[] GetEvents() { throw new NotSupportedException(); }
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
138public override EventInfo[] GetEvents() => throw new NotSupportedException(SR.NotSupported_ModifiedType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
173public sealed override EventInfo[] GetEvents() => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
108public override EventInfo[] GetEvents() => typeImpl.GetEvents();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
215public override EventInfo[] GetEvents()
System.Reflection.Emit (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
430public override EventInfo[] GetEvents()
4 references to GetEvents
Microsoft.AspNetCore.SignalR.Core (1)
Internal\TypedClientBuilder.cs (1)
264if (interfaceType.GetEvents().Length != 0)
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
108public override EventInfo[] GetEvents() => typeImpl.GetEvents();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
217return _typeInfo.GetEvents();
System.Reflection.TypeExtensions (1)
System\Reflection\TypeExtensions.cs (1)
83return type.GetEvents();