3 overrides of RemoveEventHandler
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (1)
105public override void RemoveEventHandler(object? target, Delegate? handler)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Events\RoEvent.cs (1)
80public sealed override void RemoveEventHandler(object? target, Delegate? handler) => throw new InvalidOperationException(SR.Arg_InvalidOperation_Reflection);
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
47public override void RemoveEventHandler(object target, Delegate handler)
6 references to RemoveEventHandler
Microsoft.Maui.Controls (1)
Interactivity\EventTrigger.cs (1)
94 _eventinfo.RemoveEventHandler(bindable, _handlerdelegate);
Microsoft.NET.Sdk.Publish.Tasks (1)
MsDeploy\DynamicAssembly.cs (1)
190eventInfo.RemoveEventHandler(obj, eventHandler);
PresentationFramework (2)
MS\Internal\Data\StaticPropertyChangedEventManager.cs (2)
288spcEvent.RemoveEventHandler(null, d); 619eventInfo.RemoveEventHandler(null, d);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (1)
107UnderlyingEvent.RemoveEventHandler(target, handler);
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
60_innerEventInfo.RemoveEventHandler(target, handler);