1 write to Value
Microsoft.AspNetCore.Components (1)
ParameterValue.cs (1)
15Value = value;
26 references to Value
Microsoft.AspNetCore.Components (16)
CascadingValue.cs (4)
69Value = (TValue)parameter.Value; 74ChildContent = (RenderFragment)parameter.Value; 78Name = (string)parameter.Value; 86IsFixed = (bool)parameter.Value;
DynamicComponent.cs (2)
71Type = (Type)entry.Value; 75Parameters = (IDictionary<string, object>)entry.Value;
ParameterView.cs (2)
72result = (TValue)entry.Value; 111result[entry.Name] = entry.Value;
Reflection\ComponentProperties.cs (4)
85SetProperty(target, writer, parameterName, parameter.Value); 119unmatched[parameterName] = parameter.Value; 123SetProperty(target, writer, parameterName, parameter.Value); 140unmatched[parameterName] = parameter.Value;
Sections\SectionContent.cs (4)
92SectionName = (string)param.Value; 95SectionId = param.Value; 98IsDefaultContent = (bool)param.Value; 101ChildContent = (RenderFragment)param.Value;
Microsoft.AspNetCore.Components.Endpoints (2)
src\Shared\Components\ComponentParameter.cs (2)
20var valueType = kvp.Value?.GetType(); 28parameterValues.Add(kvp.Value);
Microsoft.AspNetCore.Components.Server (2)
src\Shared\Components\ComponentParameter.cs (2)
20var valueType = kvp.Value?.GetType(); 28parameterValues.Add(kvp.Value);
Microsoft.AspNetCore.Components.Tests (2)
ParameterViewTest.cs (1)
576Assert.Same(expectedValue, parameter.Value);
RendererTest.cs (1)
6083SomeParam = parameter.Value as ImplicitlyConvertsToString;
Microsoft.AspNetCore.Components.Web (2)
Routing\NavigationLock.cs (2)
53OnBeforeInternalNavigation = (EventCallback<LocationChangingContext>)parameter.Value; 57ConfirmExternalNavigation = (bool)parameter.Value;
Microsoft.AspNetCore.Components.WebAssembly (2)
src\Shared\Components\ComponentParameter.cs (2)
20var valueType = kvp.Value?.GetType(); 28parameterValues.Add(kvp.Value);