1 write to PropertyName
Microsoft.AspNetCore.Components (1)
CascadingParameterInfo.cs (1)
29PropertyName = propertyName;
12 references to PropertyName
Microsoft.AspNetCore.Components (3)
Routing\SupplyParameterFromQueryValueProvider.cs (1)
31var queryParameterName = attribute.Name ?? parameterInfo.PropertyName;
SupplyParameterFromPersistentComponentStateValueProvider.cs (2)
43var storageKey = ComputeKey(componentState, parameterInfo.PropertyName); 51var propertyName = parameterInfo.PropertyName;
Microsoft.AspNetCore.Components.Tests (8)
CascadingParameterTest.cs (1)
1048parameterInfo.PropertyName != nameof(Value))
SupplyParameterFromPersistentComponentStateValueProviderTests.cs (7)
38(componentState, cascadingParameterInfo.PropertyName, "state") 127var key = SupplyParameterFromPersistentComponentStateValueProvider.ComputeKey(componentState, cascadingParameterInfo.PropertyName); 165var key = SupplyParameterFromPersistentComponentStateValueProvider.ComputeKey(componentState, cascadingParameterInfo.PropertyName); 206var key1 = SupplyParameterFromPersistentComponentStateValueProvider.ComputeKey(componentState1, cascadingParameterInfo.PropertyName); 210var key2 = SupplyParameterFromPersistentComponentStateValueProvider.ComputeKey(componentState2, cascadingParameterInfo.PropertyName); 279var key1 = SupplyParameterFromPersistentComponentStateValueProvider.ComputeKey(componentState1, cascadingParameterInfo.PropertyName); 283var key2 = SupplyParameterFromPersistentComponentStateValueProvider.ComputeKey(componentState2, cascadingParameterInfo.PropertyName);
Microsoft.AspNetCore.Components.Web (1)
Forms\Mapping\SupplyParameterFromFormValueProvider.cs (1)
77var parameterName = attribute.Name ?? parameterInfo.PropertyName;