10 overrides of GetEvents
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
428public override EventInfo[] GetEvents()
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
193public override EventInfo[] GetEvents() { throw new NotSupportedException(); }
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
137public override EventInfo[] GetEvents() => throw new NotSupportedException(SR.NotSupported_ModifiedType);
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
169public sealed override EventInfo[] GetEvents() => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
106public override EventInfo[] GetEvents() => typeImpl.GetEvents();
src\System\Reflection\Emit\RuntimeEnumBuilder.cs (1)
153public override EventInfo[] GetEvents()
src\System\Reflection\Emit\RuntimeGenericTypeParameterBuilder.cs (1)
131public override EventInfo[] GetEvents() { throw new NotSupportedException(); }
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (1)
760public override EventInfo[] GetEvents()
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
215public override EventInfo[] GetEvents()
System.Reflection.Emit (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
428public override EventInfo[] GetEvents()
5 references to GetEvents
Microsoft.AspNetCore.SignalR.Core (1)
Internal\TypedClientBuilder.cs (1)
264if (interfaceType.GetEvents().Length != 0)
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
106public override EventInfo[] GetEvents() => typeImpl.GetEvents();
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (1)
765return m_bakedRuntimeType.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();