@@ -200,8 +200,6 @@ public EventHandlerAttribute(string attributeName, System.Type eventArgsType) {
200
200
public string AttributeName { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
201
201
public System . Type EventArgsType { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
202
202
}
203
- [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "gotpointercapture" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
204
- [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "lostpointercapture" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
205
203
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onabort" , typeof ( Microsoft . AspNetCore . Components . UIProgressEventArgs ) ) ]
206
204
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onactivate" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
207
205
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onbeforeactivate" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
@@ -236,6 +234,7 @@ public EventHandlerAttribute(string attributeName, System.Type eventArgsType) {
236
234
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onfocusout" , typeof ( Microsoft . AspNetCore . Components . UIFocusEventArgs ) ) ]
237
235
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onfullscreenchange" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
238
236
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onfullscreenerror" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
237
+ [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "ongotpointercapture" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
239
238
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "oninput" , typeof ( Microsoft . AspNetCore . Components . UIChangeEventArgs ) ) ]
240
239
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "oninvalid" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
241
240
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onkeydown" , typeof ( Microsoft . AspNetCore . Components . UIKeyboardEventArgs ) ) ]
@@ -246,6 +245,7 @@ public EventHandlerAttribute(string attributeName, System.Type eventArgsType) {
246
245
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onloadedmetadata" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
247
246
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onloadend" , typeof ( Microsoft . AspNetCore . Components . UIProgressEventArgs ) ) ]
248
247
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onloadstart" , typeof ( Microsoft . AspNetCore . Components . UIProgressEventArgs ) ) ]
248
+ [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onlostpointercapture" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
249
249
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onmousedown" , typeof ( Microsoft . AspNetCore . Components . UIMouseEventArgs ) ) ]
250
250
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onmousemove" , typeof ( Microsoft . AspNetCore . Components . UIMouseEventArgs ) ) ]
251
251
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onmouseout" , typeof ( Microsoft . AspNetCore . Components . UIMouseEventArgs ) ) ]
@@ -256,8 +256,16 @@ public EventHandlerAttribute(string attributeName, System.Type eventArgsType) {
256
256
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onpause" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
257
257
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onplay" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
258
258
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onplaying" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
259
+ [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onpointercancel" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
260
+ [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onpointerdown" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
261
+ [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onpointerenter" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
262
+ [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onpointerleave" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
259
263
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onpointerlockchange" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
260
264
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onpointerlockerror" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
265
+ [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onpointermove" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
266
+ [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onpointerout" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
267
+ [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onpointerover" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
268
+ [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onpointerup" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
261
269
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onprogress" , typeof ( Microsoft . AspNetCore . Components . UIProgressEventArgs ) ) ]
262
270
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onratechange" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
263
271
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onreadystatechange" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
@@ -283,14 +291,6 @@ public EventHandlerAttribute(string attributeName, System.Type eventArgsType) {
283
291
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onvolumechange" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
284
292
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onwaiting" , typeof ( Microsoft . AspNetCore . Components . UIEventArgs ) ) ]
285
293
[ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "onwheel" , typeof ( Microsoft . AspNetCore . Components . UIWheelEventArgs ) ) ]
286
- [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "pointercancel" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
287
- [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "pointerdown" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
288
- [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "pointerenter" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
289
- [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "pointerleave" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
290
- [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "pointermove" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
291
- [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "pointerout" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
292
- [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "pointerover" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
293
- [ Microsoft . AspNetCore . Components . EventHandlerAttribute ( "pointerup" , typeof ( Microsoft . AspNetCore . Components . UIPointerEventArgs ) ) ]
294
294
public static partial class EventHandlers
295
295
{
296
296
}
0 commit comments