From 71bcac06ada5b82efc018c0d37f99c434defd061 Mon Sep 17 00:00:00 2001 From: Steve Sanderson Date: Fri, 14 Dec 2018 17:04:26 +0000 Subject: [PATCH] fixing type of property Detail based on standard. (#4595) --- .../src/Microsoft.AspNetCore.Components/UIEventArgs.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Components/src/Microsoft.AspNetCore.Components/UIEventArgs.cs b/src/Components/src/Microsoft.AspNetCore.Components/UIEventArgs.cs index eceff45c90..662fa7bc63 100644 --- a/src/Components/src/Microsoft.AspNetCore.Components/UIEventArgs.cs +++ b/src/Components/src/Microsoft.AspNetCore.Components/UIEventArgs.cs @@ -41,7 +41,7 @@ namespace Microsoft.AspNetCore.Components /// /// A count of consecutive clicks that happened in a short amount of time, incremented by one. /// - public float Detail { get; set; } + public long Detail { get; set; } /// /// The data that underlies a drag-and-drop operation, known as the drag data store. @@ -258,7 +258,7 @@ namespace Microsoft.AspNetCore.Components /// /// A count of consecutive clicks that happened in a short amount of time, incremented by one. /// - public float Detail { get; set; } + public long Detail { get; set; } /// /// The X coordinate of the mouse pointer in global (screen) coordinates. @@ -403,7 +403,7 @@ namespace Microsoft.AspNetCore.Components /// /// A count of consecutive clicks that happened in a short amount of time, incremented by one. /// - public float Detail { get; set; } + public long Detail { get; set; } /// /// A list of for every point of contact currently touching the surface.