1 write to TypeName
Microsoft.AspNetCore.Components.WebAssembly (1)
src\Shared\Components\ComponentParameter.cs (1)
24
TypeName
= valueType?.FullName,
6 references to TypeName
Microsoft.AspNetCore.Components.WebAssembly (6)
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);