1 write to TypeName
Microsoft.AspNetCore.Components.WebAssembly (1)
src\Shared\Components\ComponentParameter.cs (1)
24TypeName = valueType?.FullName,
6 references to TypeName
Microsoft.AspNetCore.Components.WebAssembly (6)
Prerendering\WebAssemblyComponentParameterDeserializer.cs (6)
42if (definition.TypeName == null && definition.Assembly == null) 46else if (definition.TypeName == null || definition.Assembly == null) 48throw new InvalidOperationException($"The parameter definition for '{definition.Name}' is incomplete: Type='{definition.TypeName}' Assembly='{definition.Assembly}'."); 52var parameterType = _parametersCache.GetParameterType(definition.Assembly, definition.TypeName); 55throw new InvalidOperationException($"The parameter '{definition.Name}' with type '{definition.TypeName}' in assembly '{definition.Assembly}' could not be found."); 69throw new InvalidOperationException($"Could not parse the parameter value for parameter '{definition.Name}' of type '{definition.TypeName}' and assembly '{definition.Assembly}'.", e);