fixing type of property Detail based on standard. (#4595)

This commit is contained in:
Steve Sanderson 2018-12-14 17:04:26 +00:00 committed by GitHub
parent 341636b05d
commit 71bcac06ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ namespace Microsoft.AspNetCore.Components
/// <summary>
/// A count of consecutive clicks that happened in a short amount of time, incremented by one.
/// </summary>
public float Detail { get; set; }
public long Detail { get; set; }
/// <summary>
/// The data that underlies a drag-and-drop operation, known as the drag data store.
@ -258,7 +258,7 @@ namespace Microsoft.AspNetCore.Components
/// <summary>
/// A count of consecutive clicks that happened in a short amount of time, incremented by one.
/// </summary>
public float Detail { get; set; }
public long Detail { get; set; }
/// <summary>
/// The X coordinate of the mouse pointer in global (screen) coordinates.
@ -403,7 +403,7 @@ namespace Microsoft.AspNetCore.Components
/// <summary>
/// A count of consecutive clicks that happened in a short amount of time, incremented by one.
/// </summary>
public float Detail { get; set; }
public long Detail { get; set; }
/// <summary>
/// A list of <see cref="UITouchPoint"/> for every point of contact currently touching the surface.