3 references to EventCallback
Microsoft.AspNetCore.Components (3)
EventCallbackFactory.cs (2)
95return new EventCallback<TValue>(callback.Receiver, callback.Delegate); 203return new EventCallback<TValue>(callback?.Target as IHandleEvent ?? receiver as IHandleEvent, callback);
EventCallbackOfT.cs (1)
16public static readonly EventCallback<TValue> Empty = new EventCallback<TValue>(null, (Action)(() => { }));