4 overrides of GetOtherMethods
System.Private.CoreLib (1)
src\System\Reflection\RuntimeEventInfo.cs (1)
136public override MethodInfo[] GetOtherMethods(bool nonPublic)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (1)
70public override MethodInfo[] GetOtherMethods(bool nonPublic)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Events\RoEvent.cs (1)
71public abstract override MethodInfo[] GetOtherMethods(bool nonPublic);
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
68public override MethodInfo[] GetOtherMethods(bool nonPublic) => _innerEventInfo.GetOtherMethods(nonPublic);
3 references to GetOtherMethods
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\EventInfo.cs (1)
18public MethodInfo[] GetOtherMethods() => GetOtherMethods(nonPublic: false);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (1)
72return UnderlyingEvent.GetOtherMethods(nonPublic);
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
68public override MethodInfo[] GetOtherMethods(bool nonPublic) => _innerEventInfo.GetOtherMethods(nonPublic);