AvaloniaView Class
Definition
Namespace: Avalonia.Browser.Blazor
Assembly: Avalonia.Browser.Blazor (in Avalonia.Browser.Blazor.dll)
- C#
- VB
- F#
public class AvaloniaView : ComponentBase
Public Class AvaloniaView
Inherits ComponentBase
type AvaloniaView =
class
inherit ComponentBase
end
Inheritance | Object → ComponentBase → AvaloniaView |
Constructors
AvaloniaView() | Initializes a new instance of the AvaloniaView class |
Methods
BuildRenderTree(RenderTreeBuilder) | (Overrides ComponentBase.BuildRenderTree(RenderTreeBuilder)) |
Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object) |
Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
GetHashCode() | Serves as the default hash function. (Inherited from Object) |
GetType() | Gets the Type of the current instance. (Inherited from Object) |
InvokeAsync(Action) | Executes the supplied work item on the associated renderer's synchronization context. (Inherited from ComponentBase) |
InvokeAsync(Func(Task)) | Executes the supplied work item on the associated renderer's synchronization context. (Inherited from ComponentBase) |
MemberwiseClone() | Creates a shallow copy of the current Object. (Inherited from Object) |
OnAfterRender(Boolean) | (Overrides ComponentBase.OnAfterRender(Boolean)) |
OnAfterRenderAsync(Boolean) | Method invoked after each time the component has been rendered. Note that the component does not automatically re-render after the completion of any returned Task, because that would cause an infinite render loop. (Inherited from ComponentBase) |
OnInitialized() | (Overrides ComponentBase.OnInitialized()) |
OnInitializedAsync() | Method invoked when the component is ready to start, having received its initial parameters from its parent in the render tree. Override this method if you will perform an asynchronous operation and want the component to refresh when that operation is completed. (Inherited from ComponentBase) |
OnParametersSet() | Method invoked when the component has received parameters from its parent in the render tree, and the incoming values have been assigned to properties. (Inherited from ComponentBase) |
OnParametersSetAsync() | Method invoked when the component has received parameters from its parent in the render tree, and the incoming values have been assigned to properties. (Inherited from ComponentBase) |
SetParametersAsync(ParameterView) | Sets parameters supplied by the component's parent in the render tree. (Inherited from ComponentBase) |
ShouldRender() | Returns a flag to indicate whether the component should render. (Inherited from ComponentBase) |
StateHasChanged() | Notifies the component that its state has changed. When applicable, this will cause the component to be re-rendered. (Inherited from ComponentBase) |
ToString() | Returns a string that represents the current object. (Inherited from Object) |