4 overrides of GetRaiseMethod
System.Private.CoreLib (1)
src\System\Reflection\RuntimeEventInfo.cs (1)
168
public override MethodInfo?
GetRaiseMethod
(bool nonPublic)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (1)
75
public override MethodInfo?
GetRaiseMethod
(bool nonPublic)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Events\RoEvent.cs (1)
61
public sealed override MethodInfo?
GetRaiseMethod
(bool nonPublic) => GetRoRaiseMethod()?.FilterAccessor(nonPublic);
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
70
public override MethodInfo?
GetRaiseMethod
(bool nonPublic) => _innerEventInfo.GetRaiseMethod(nonPublic);
6 references to GetRaiseMethod
System.ComponentModel.Composition (1)
System\ComponentModel\Composition\ReflectionModel\LazyMemberInfo.cs (1)
37
_accessors = new MemberInfo?[] { event_.
GetRaiseMethod
(true), event_.GetAddMethod(true), event_.GetRemoveMethod(true) };
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\EventInfo.cs (2)
23
public virtual MethodInfo? RaiseMethod =>
GetRaiseMethod
(nonPublic: true);
27
public MethodInfo? GetRaiseMethod() =>
GetRaiseMethod
(nonPublic: false);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (1)
77
return UnderlyingEvent.
GetRaiseMethod
(nonPublic);
System.Reflection.TypeExtensions (1)
System\Reflection\TypeExtensions.cs (1)
429
return eventInfo.
GetRaiseMethod
(nonPublic);
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
70
public override MethodInfo? GetRaiseMethod(bool nonPublic) => _innerEventInfo.
GetRaiseMethod
(nonPublic);