2 instantiations of ClipboardEventArgs
Microsoft.AspNetCore.Components.Web (1)
WebEventData\ClipboardEventArgsReader.cs (1)
16
var eventArgs = new
ClipboardEventArgs
();
Microsoft.AspNetCore.Components.Web.Tests (1)
WebEventData\ClipboardEventArgsReaderTest.cs (1)
14
var args = new
ClipboardEventArgs
14 references to ClipboardEventArgs
Microsoft.AspNetCore.Components.Web (11)
Web\EventHandlers.cs (3)
58
[EventHandler("oncopy", typeof(
ClipboardEventArgs
), true, true)]
59
[EventHandler("oncut", typeof(
ClipboardEventArgs
), true, true)]
60
[EventHandler("onpaste", typeof(
ClipboardEventArgs
), true, true)]
Web\WebEventCallbackFactoryEventArgsExtensions.cs (6)
20
public static EventCallback<
ClipboardEventArgs
> Create(this EventCallbackFactory factory, object receiver, Action<
ClipboardEventArgs
> callback)
24
return factory.Create<
ClipboardEventArgs
>(receiver, callback);
36
public static EventCallback<
ClipboardEventArgs
> Create(this EventCallbackFactory factory, object receiver, Func<
ClipboardEventArgs
, Task> callback)
40
return factory.Create<
ClipboardEventArgs
>(receiver, callback);
WebEventData\ClipboardEventArgsReader.cs (2)
14
internal static
ClipboardEventArgs
Read(JsonElement jsonElement)
16
var
eventArgs = new ClipboardEventArgs();
Microsoft.AspNetCore.Components.Web.Tests (3)
WebEventData\ClipboardEventArgsReaderTest.cs (3)
14
var
args = new ClipboardEventArgs
21
var
result = ClipboardEventArgsReader.Read(jsonElement);
27
private static JsonElement GetJsonElement(
ClipboardEventArgs
args)