2 writes to Assembly
Microsoft.AspNetCore.Components.WebAssembly (2)
src\Shared\Components\ComponentParameter.cs (1)
25
Assembly
= valueType?.Assembly?.GetName()?.Name
WebAssemblyJsonSerializerContext.ComponentParameter.g.cs (1)
101
Setter = static (obj, value) => global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.ComponentParameter>(obj).
Assembly
= value!,
10 references to Assembly
Microsoft.AspNetCore.Components.WebAssembly (10)
Prerendering\WebAssemblyComponentParameterDeserializer.cs (6)
42
if (definition.TypeName == null && definition.
Assembly
== null)
46
else if (definition.TypeName == null || definition.
Assembly
== null)
48
throw new InvalidOperationException($"The parameter definition for '{definition.Name}' is incomplete: Type='{definition.TypeName}' Assembly='{definition.
Assembly
}'.");
52
var parameterType = _parametersCache.GetParameterType(definition.
Assembly
, definition.TypeName);
55
throw new InvalidOperationException($"The parameter '{definition.Name}' with type '{definition.TypeName}' in assembly '{definition.
Assembly
}' could not be found.");
69
throw new InvalidOperationException($"Could not parse the parameter value for parameter '{definition.Name}' of type '{definition.TypeName}' and assembly '{definition.
Assembly
}'.", e);
src\Components\Shared\src\WebRootComponentParameters.cs (2)
43
!string.Equals(definition.
Assembly
, otherDefinition.
Assembly
, StringComparison.Ordinal))
WebAssemblyJsonSerializerContext.ComponentParameter.g.cs (2)
100
Getter = static obj => ((global::Microsoft.AspNetCore.Components.ComponentParameter)obj).
Assembly
,
132
string __value_Assembly = ((global::Microsoft.AspNetCore.Components.ComponentParameter)value).
Assembly
;