12 implementations of IsFixed
Microsoft.AspNetCore.Components (4)
CascadingValue.cs (1)
42
[Parameter] public bool
IsFixed
{ get; set; }
CascadingValueSource.cs (1)
137
bool ICascadingValueSupplier.
IsFixed
=> _isFixed;
Routing\SupplyParameterFromQueryValueProvider.cs (1)
21
public bool
IsFixed
=> false;
SupplyParameterFromPersistentComponentStateValueProvider.cs (1)
25
public bool
IsFixed
=> false;
Microsoft.AspNetCore.Components.Tests (5)
CascadingParameterStateTest.cs (1)
484
public bool
IsFixed
=> isFixed;
CascadingParameterTest.cs (2)
883
public bool
IsFixed
=> true;
1037
bool ICascadingValueSupplier.
IsFixed
=> true;
ParameterViewTest.Assignment.cs (1)
786
public bool
IsFixed
=> throw new NotImplementedException();
ParameterViewTest.cs (1)
607
public bool
IsFixed
=> false;
Microsoft.AspNetCore.Components.Web (3)
Forms\Editor.cs (1)
34
bool ICascadingValueSupplier.
IsFixed
=> true;
Forms\Mapping\FormMappingScope.cs (1)
80
bool ICascadingValueSupplier.
IsFixed
Forms\Mapping\SupplyParameterFromFormValueProvider.cs (1)
30
bool ICascadingValueSupplier.
IsFixed
=> true;
4 references to IsFixed
Microsoft.AspNetCore.Components (4)
CascadingParameterState.cs (2)
62
if (!supplier.
IsFixed
)
67
throw new InvalidOperationException($"'{info.Attribute.GetType()}' is flagged with SingleDelivery, but the selected supplier '{supplier.GetType()}' is not flagged with {nameof(ICascadingValueSupplier.
IsFixed
)}");
Rendering\ComponentState.cs (2)
275
if (!valueSupplier.
IsFixed
)
291
if (!supplier.
IsFixed
)