| File: RenderTree\EventFieldInfo.cs | Web Access |
| Project: src\aspnetcore\src\Components\Components\src\Microsoft.AspNetCore.Components.csproj (Microsoft.AspNetCore.Components) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Components.RenderTree; /// <summary> /// Types in the Microsoft.AspNetCore.Components.RenderTree are not recommended for use outside /// of the Blazor framework. These types will change in a future release. /// </summary> // // Information supplied with an event notification that can be used to update an existing // render tree to match the latest UI state when a form field has mutated. To determine // which field has been mutated, the renderer matches it based on the event handler ID. public class EventFieldInfo { /// <summary> /// Identifies the component whose render tree contains the affected form field. /// </summary> public int ComponentId { get; set; } /// <summary> /// Specifies the form field's new value. /// </summary> public object FieldValue { get; set; } = default!; }