2 writes to TypeName
Microsoft.AspNetCore.Components.WebAssembly (2)
src\Shared\Components\ComponentMarker.cs (1)
84TypeName = typeName;
WebAssemblyJsonSerializerContext.ComponentMarker.g.cs (1)
179Setter = static (obj, value) => global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.ComponentMarker>(obj).TypeName = value!,
9 references to TypeName
Microsoft.AspNetCore.Components.WebAssembly (9)
Hosting\WebAssemblyHostBuilder.cs (2)
153var componentType = _rootComponentCache.GetRootType(registeredComponent.Assembly!, registeredComponent.TypeName!); 157$"Root component type '{registeredComponent.TypeName}' could not be found in the assembly '{registeredComponent.Assembly}'. " +
Services\DefaultWebAssemblyJSRuntime.cs (2)
134var componentType = Instance._rootComponentCache.GetRootType(operation.Marker!.Value.Assembly!, operation.Marker.Value.TypeName!) 135?? throw new InvalidOperationException($"Root component type '{operation.Marker.Value.TypeName}' could not be found in the assembly '{operation.Marker.Value.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)}...";
WebAssemblyJsonSerializerContext.ComponentMarker.g.cs (2)
178Getter = static obj => ((global::Microsoft.AspNetCore.Components.ComponentMarker)obj).TypeName, 272string __value_TypeName = ((global::Microsoft.AspNetCore.Components.ComponentMarker)value).TypeName;