RenderFragment<TValue> Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a segment of UI content for an object of type TValue
, implemented as
a function that returns a RenderFragment.
generic <typename TValue>
public delegate Microsoft::AspNetCore::Components::RenderFragment ^ RenderFragment(TValue value);
public delegate Microsoft.AspNetCore.Components.RenderFragment RenderFragment<TValue>(TValue value);
type RenderFragment<'Value> = delegate of 'Value -> RenderFragment
Public Delegate Function RenderFragment(Of TValue)(value As TValue) As RenderFragment
Type Parameters
- TValue
The type of object.
Parameters
- value
- TValue
The value used to build the content.