Table of Contents

Interface IFragmentVisitor<T>

Namespace
The.Web.Routing
Assembly
Instagile.Web.Client.dll

Implemented by BoundLink to render ActionLinkModels.

public interface IFragmentVisitor<T>

Type Parameters

T

The type of the link's content (usually string).

Methods

Visit(EventCallback, string?)

RenderFragment<T> Visit(EventCallback action, string? href)

Parameters

action EventCallback
href string

Returns

RenderFragment<T>

Visit<U>(EventCallback<U>, string?)

RenderFragment<T> Visit<U>(EventCallback<U> action, string? href)

Parameters

action EventCallback<U>
href string

Returns

RenderFragment<T>

Type Parameters

U