2 writes to Assembly
Microsoft.AspNetCore.Components.WebAssembly (2)
src\Shared\Components\ComponentMarker.cs (1)
83Assembly = assembly;
WebAssemblyJsonSerializerContext.ComponentMarker.g.cs (1)
159Setter = static (obj, value) => global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.ComponentMarker>(obj).Assembly = value!,
8 references to Assembly
Microsoft.AspNetCore.Components.WebAssembly (8)
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 (2)
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)
158Getter = static obj => ((global::Microsoft.AspNetCore.Components.ComponentMarker)obj).Assembly, 267string __value_Assembly = ((global::Microsoft.AspNetCore.Components.ComponentMarker)value).Assembly;