1 write to _componentType
Microsoft.AspNetCore.Components.Endpoints (1)
Rendering\SSRRenderModeBoundary.cs (1)
43
_componentType
= componentType;
6 references to _componentType
Microsoft.AspNetCore.Components.Endpoints (6)
Rendering\SSRRenderModeBoundary.cs (6)
146
throw new InvalidOperationException($"Cannot pass RenderFragment<T> parameter '{name}' to component '{
_componentType
.Name}' with rendermode '{RenderMode.GetType().Name}'. Templated content can't be passed across a rendermode boundary, because it is arbitrary code and cannot be serialized.");
155
throw new InvalidOperationException($"Cannot pass the parameter '{name}' to component '{
_componentType
.Name}' with rendermode '{RenderMode.GetType().Name}'. This is because the parameter is of the delegate type '{value.GetType()}', which is arbitrary code and cannot be serialized.");
163
builder.OpenComponent(0,
_componentType
);
198
serverComponentSerializer.SerializeInvocation(ref marker, invocationId,
_componentType
, parameters);
203
WebAssemblyComponentSerializer.SerializeInvocation(ref marker,
_componentType
, parameters);
211
var componentTypeNameHash = _componentTypeNameHashCache.GetOrAdd(
_componentType
, TypeNameHash.Compute);