5 implementations of IsFixed
Microsoft.AspNetCore.Components (5)
CascadingParameterValueProvider.cs (1)
20public bool IsFixed => false;
CascadingValue.cs (1)
42[Parameter] public bool IsFixed { get; set; }
CascadingValueSource.cs (1)
137bool ICascadingValueSupplier.IsFixed => _isFixed;
PersistentState\PersistentStateValueProvider.cs (1)
14public bool IsFixed => false;
Routing\SupplyParameterFromQueryValueProvider.cs (1)
22public bool IsFixed => false;
4 references to IsFixed
Microsoft.AspNetCore.Components (4)
CascadingParameterState.cs (2)
73if (!supplier.IsFixed) 78throw 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)
308if (!valueSupplier.IsFixed) 324if (!supplier.IsFixed)