1 write to TypeName
Microsoft.AspNetCore.Components.Endpoints (1)
src\Shared\Components\ComponentMarker.cs (1)
84TypeName = typeName;
14 references to TypeName
Microsoft.AspNetCore.Components.Endpoints (3)
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)}...";
Microsoft.AspNetCore.Components.Endpoints.Tests (11)
EndpointHtmlRendererTest.cs (11)
93Assert.Equal(typeof(SimpleComponent).FullName, marker.TypeName); 184Assert.Equal(typeof(SimpleComponent).FullName, preambleMarker.TypeName); 193Assert.Null(epilogueMarker.TypeName); 227Assert.Equal(typeof(GreetingComponent).FullName, marker.TypeName); 265Assert.Equal(typeof(GreetingComponent).FullName, marker.TypeName); 302Assert.Equal(typeof(GreetingComponent).FullName, preambleMarker.TypeName); 320Assert.Null(epilogueMarker.TypeName); 352Assert.Equal(typeof(GreetingComponent).FullName, preambleMarker.TypeName); 369Assert.Null(epilogueMarker.TypeName); 1276Assert.Equal(typeof(InteractiveGreetingWebAssembly).FullName, marker.TypeName); 1289Assert.Equal(typeof(InteractiveGreetingWebAssemblyNonPrerendered).FullName, marker.TypeName);