1 write to TypeName
Microsoft.AspNetCore.Components.WebAssembly (1)
src\Shared\Components\ComponentMarker.cs (1)
84TypeName = typeName;
5 references to TypeName
Microsoft.AspNetCore.Components.WebAssembly (5)
Hosting\WebAssemblyHostBuilder.cs (2)
143var componentType = _rootComponentCache.GetRootType(registeredComponent.Assembly!, registeredComponent.TypeName!); 147$"Root component type '{registeredComponent.TypeName}' could not be found in the assembly '{registeredComponent.Assembly}'. " +
src\Shared\Components\ComponentMarker.cs (3)
100return $"Server Component: {TypeName}, Sequence: {Sequence}, Key: {Key?.FormattedComponentKey} Descriptor: {Descriptor?.Substring(5)}..."; 102return $"WebAssembly Component: {TypeName}, Assembly: {Assembly}, Key: {Key?.FormattedComponentKey}"; 104return $"Auto Component: {TypeName}, Assembly: {Assembly}, Key: {Key?.FormattedComponentKey}, Descriptor: {Descriptor?.Substring(5)}...";