Skip to content

Commit 2757bcb

Browse files
committed
WIP
1 parent 1eb9785 commit 2757bcb

25 files changed

+1206
-1119
lines changed

src/Components/Components/ref/Microsoft.AspNetCore.Components.netstandard2.0.cs

Lines changed: 0 additions & 262 deletions
Large diffs are not rendered by default.

src/Components/Components/src/EventCallbackFactoryUIEventArgsExtensions.cs

Lines changed: 1 addition & 361 deletions
Large diffs are not rendered by default.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Copyright (c) .NET Foundation. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+
4+
namespace Microsoft.AspNetCore.Components
5+
{
6+
/// <summary>
7+
/// Supplies information about an input change event that is being raised.
8+
/// </summary>
9+
public class UIChangeEventArgs : UIEventArgs
10+
{
11+
/// <summary>
12+
/// Gets or sets the new value of the input. This may be a <see cref="string"/>
13+
/// or a <see cref="bool"/>.
14+
/// </summary>
15+
public object Value { get; set; }
16+
}
17+
}

0 commit comments

Comments
 (0)