1 write to _componentType
Microsoft.AspNetCore.Components.Endpoints (1)
Rendering\SSRRenderModeBoundary.cs (1)
51_componentType = componentType;
9 references to _componentType
Microsoft.AspNetCore.Components.Endpoints (9)
Rendering\SSRRenderModeBoundary.cs (9)
41internal Type ComponentType => _componentType; 177throw 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."); 183throw 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."); 191builder.OpenComponent(0, _componentType); 231serverComponentSerializer.SerializeInvocation(ref marker, invocationId, _componentType, serializableParameters); 236WebAssemblyComponentSerializer.SerializeInvocation(ref marker, _componentType, serializableParameters); 256$"Cannot serialize RenderFragment parameter '{name}' for component '{_componentType.Name}', because the RenderFragment was not executed. It can be due to disabled prerendering or conditional rendering."); 261Nodes = RenderFragmentSerializer.SerializeFrames(capture, logger, _componentType.Name) 275var componentTypeNameHash = _componentTypeNameHashCache.GetOrAdd(_componentType, TypeNameHash.Compute);