InputFile.OnAfterRenderAsync(Boolean) Method

Definition

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.

protected:
 override System::Threading::Tasks::Task ^ OnAfterRenderAsync(bool firstRender);
protected override System.Threading.Tasks.Task OnAfterRenderAsync (bool firstRender);
override this.OnAfterRenderAsync : bool -> System.Threading.Tasks.Task
Protected Overrides Function OnAfterRenderAsync (firstRender As Boolean) As Task

Parameters

firstRender
Boolean

Set to true if this is the first time OnAfterRender(Boolean) has been invoked on this component instance; otherwise false.

Returns

Task

A Task representing any asynchronous operation.

Applies to