// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. namespace CPF.Razor { /// /// Represents a container for native element. /// public interface IElementHandler { /// /// Sets an attribute named on the represented by /// this handler to value . /// /// /// /// /// void ApplyAttribute(ulong attributeEventHandlerId, string attributeName, object attributeValue, string attributeEventUpdatesAttributeName); /// /// The native element represented by this handler. This is often a native UI component, but can be any type /// of component used by the native system. /// object TargetElement { get; } } }