Просмотр исходного кода

PointerID type string replaced to long (#7426)

Solves issue [#7418](https://github.com/aspnet/AspNetCore/issues/7418) - Blazor onpointerdown event gives error
Vakhtangi Abashidze 7 лет назад
Родитель
Сommit
a314cb2773
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/Components/Components/src/UIEventArgs.cs

+ 1 - 1
src/Components/Components/src/UIEventArgs.cs

@@ -330,7 +330,7 @@ namespace Microsoft.AspNetCore.Components
         /// <summary>
         /// A unique identifier for the pointer causing the event.
         /// </summary>
-        public string PointerId { get; set; }
+        public long PointerId { get; set; }
 
         /// <summary>
         /// The width (magnitude on the X axis), in CSS pixels, of the contact geometry of the pointer.