// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.AspNetCore.Blazor.RenderTree; namespace Microsoft.AspNetCore.Blazor { /// /// Handles an event raised for a . /// public delegate void UIEventHandler(UIEventArgs e); /// /// Handles an event raised for a . /// public delegate void UIChangeEventHandler(UIChangeEventArgs e); /// /// Handles an event raised for a . /// public delegate void UIKeyboardEventHandler(UIKeyboardEventArgs e); /// /// Handles an event raised for a . /// public delegate void UIMouseEventHandler(UIMouseEventArgs e); }