2 types derived from Renderer
Microsoft.AspNetCore.Components.Web (2)
HtmlRendering\StaticHtmlRenderer.cs (1)
20
public partial class StaticHtmlRenderer :
Renderer
WebRenderer.cs (1)
20
public abstract class WebRenderer :
Renderer
52 references to Renderer
Microsoft.AspNetCore.Components (42)
CascadingParameterState.cs (1)
76
internal static ICascadingValueSupplier? GetMatchingCascadingValueSupplier(in CascadingParameterInfo info,
Renderer
renderer, ComponentState? componentState)
ComponentFactory.cs (2)
32
private readonly
Renderer
_renderer;
34
public ComponentFactory(IComponentActivator componentActivator, IComponentPropertyActivator propertyActivator,
Renderer
renderer)
Dispatcher.cs (5)
10
/// Dispatches external actions to be executed on the context of a <see cref="
Renderer
"/>.
47
/// Invokes the given <see cref="Action"/> in the context of the associated <see cref="
Renderer
"/>.
54
/// Invokes the given <see cref="Func{TResult}"/> in the context of the associated <see cref="
Renderer
"/>.
61
/// Invokes the given <see cref="Func{TResult}"/> in the context of the associated <see cref="
Renderer
"/>.
68
/// Invokes the given <see cref="Func{TResult}"/> in the context of the associated <see cref="
Renderer
"/>.
PersistentState\ComponentStatePersistenceManager.cs (3)
98
/// <param name="renderer">The <see cref="
Renderer
"/> that components are being rendered.</param>
100
public Task PersistStateAsync(IPersistentComponentStateStore store,
Renderer
renderer)
173
private void InferRenderModes(
Renderer
renderer)
PersistentState\PersistentStateValueProviderKeyResolver.cs (1)
171
var
renderer = componentState.Renderer;
RenderHandle.cs (6)
16
private readonly
Renderer
? _renderer;
19
internal RenderHandle(
Renderer
renderer, int componentId)
52
/// Gets a value that determines if the <see cref="
Renderer
"/> is triggering a render in response to a metadata update (hot-reload) change.
84
/// Gets the <see cref="ResourceAssetCollection"/> associated with the <see cref="
Renderer
"/>.
109
/// Dispatches an <see cref="Exception"/> to the <see cref="
Renderer
"/>.
115
var
renderer = _renderer;
Rendering\ComponentState.cs (4)
18
private readonly
Renderer
_renderer;
35
public ComponentState(
Renderer
renderer, int componentId, IComponent component, ComponentState? parentComponentState)
62
private static ComponentState? GetSectionOutletLogicalParent(
Renderer
renderer, SectionOutlet sectionOutlet)
101
protected internal
Renderer
Renderer => _renderer;
RenderTree\Renderer.cs (14)
79
/// Constructs an instance of <see cref="
Renderer
"/>.
90
/// Constructs an instance of <see cref="
Renderer
"/>.
145
/// Gets the <see cref="Components.Dispatcher" /> associated with this <see cref="
Renderer
" />.
150
/// Gets or sets the <see cref="Components.ElementReferenceContext"/> associated with this <see cref="
Renderer
"/>,
156
/// Gets a value that determines if the <see cref="
Renderer
"/> is triggering a render in response to a (metadata update) hot-reload change.
206
/// Gets the <see cref="RendererInfo"/> associated with this <see cref="
Renderer
"/>.
211
/// Gets the <see cref="ResourceAssetCollection"/> associated with this <see cref="
Renderer
"/>.
256
/// Associates the <see cref="IComponent"/> with the <see cref="
Renderer
"/>, assigning
257
/// an identifier that is unique within the scope of the <see cref="
Renderer
"/>.
442
/// This is called before the component is initialized and tracked within the <see cref="
Renderer
"/>. Subclasses
1235
/// Releases all resources currently used by this <see cref="
Renderer
"/> instance.
1378
/// Releases all resources currently used by this <see cref="
Renderer
"/> instance.
1415
private sealed class HotReloadRenderHandler(
Renderer
renderer, ExecutionContext? executionContext)
1425
ExecutionContext.Run(executionContext, static s => ((
Renderer
)s!).RenderRootComponentsOnHotReload(), renderer);
RenderTree\RenderTreeDiffBuilder.cs (4)
22
Renderer
renderer,
778
private static string BuildComponentPath(
Renderer
renderer, int componentId)
1085
public readonly
Renderer
Renderer;
1097
Renderer
renderer,
src\aspnetcore\src\Shared\Components\ComponentsActivityLinkStore.cs (2)
31
public ComponentsActivityLinkStore(
Renderer
? instance)
65
static extern object GetActivityLinksStore(
Renderer
instance);
Microsoft.AspNetCore.Components.Endpoints (3)
Rendering\EndpointComponentState.cs (1)
33
public EndpointComponentState(
Renderer
renderer, int componentId, IComponent component, ComponentState? parentComponentState)
src\aspnetcore\src\Shared\Components\ComponentsActivityLinkStore.cs (2)
31
public ComponentsActivityLinkStore(
Renderer
? instance)
65
static extern object GetActivityLinksStore(
Renderer
instance);
Microsoft.AspNetCore.Components.Server (2)
src\aspnetcore\src\Shared\Components\ComponentsActivityLinkStore.cs (2)
31
public ComponentsActivityLinkStore(
Renderer
? instance)
65
static extern object GetActivityLinksStore(
Renderer
instance);
Microsoft.AspNetCore.Components.Web (5)
HtmlRendering\StaticHtmlRenderer.cs (1)
16
/// A <see cref="
Renderer
"/> subclass that is intended for static HTML rendering. Application
WebEventData\WebEventData.cs (3)
17
Renderer
renderer,
36
Renderer
renderer,
62
Renderer
renderer,
WebRenderer.cs (1)
18
/// A <see cref="
Renderer
"/> that attaches its components to a browser DOM.