2 implementations of IsFixed
Microsoft.AspNetCore.Components (2)
CascadingValue.cs (1)
42
[Parameter] public bool
IsFixed
{ get; set; }
CascadingValueSource.cs (1)
137
bool ICascadingValueSupplier.
IsFixed
=> _isFixed;
4 references to IsFixed
Microsoft.AspNetCore.Components (4)
CascadingParameterState.cs (2)
63
if (!supplier.
IsFixed
)
68
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)
254
if (!valueSupplier.
IsFixed
)
270
if (!supplier.
IsFixed
)