12 writes to CaptureUnmatchedValues
Aspire.Dashboard (2)
Components\Controls\LogLevelSelect.razor.cs (1)
23
[Parameter(
CaptureUnmatchedValues
= true)]
Components\Controls\SpanTypeSelect.razor.cs (1)
24
[Parameter(
CaptureUnmatchedValues
= true)]
Microsoft.AspNetCore.Components.Endpoints (1)
Assets\ImportMap.cs (1)
35
[Parameter(
CaptureUnmatchedValues
= true)] public IReadOnlyDictionary<string, object>? AdditionalAttributes { get; set; }
Microsoft.AspNetCore.Components.Web (9)
Forms\EditForm.cs (1)
31
[Parameter(
CaptureUnmatchedValues
= true)] public IReadOnlyDictionary<string, object>? AdditionalAttributes { get; set; }
Forms\InputBase.cs (1)
37
[Parameter(
CaptureUnmatchedValues
= true)] public IReadOnlyDictionary<string, object>? AdditionalAttributes { get; set; }
Forms\InputFile.cs (1)
31
[Parameter(
CaptureUnmatchedValues
= true)]
Forms\InputRadio.cs (1)
25
[Parameter(
CaptureUnmatchedValues
= true)] public IReadOnlyDictionary<string, object>? AdditionalAttributes { get; set; }
Forms\Label.cs (1)
54
[Parameter(
CaptureUnmatchedValues
= true)]
Forms\ValidationMessage.cs (1)
23
[Parameter(
CaptureUnmatchedValues
= true)] public IReadOnlyDictionary<string, object>? AdditionalAttributes { get; set; }
Forms\ValidationSummary.cs (1)
30
[Parameter(
CaptureUnmatchedValues
= true)] public IReadOnlyDictionary<string, object>? AdditionalAttributes { get; set; }
Media\MediaComponentBase.cs (1)
95
[Parameter(
CaptureUnmatchedValues
= true)] public Dictionary<string, object>? AdditionalAttributes { get; set; }
Routing\NavLink.cs (1)
36
[Parameter(
CaptureUnmatchedValues
= true)]
8 references to CaptureUnmatchedValues
Microsoft.AspNetCore.Components (8)
ParameterAttribute.cs (3)
20
/// <see cref="
CaptureUnmatchedValues
"/> allows a component to accept arbitrary additional
24
/// <see cref="
CaptureUnmatchedValues
"/> can be used on at most one parameter per component.
27
/// <see cref="
CaptureUnmatchedValues
"/> should only be applied to parameters of a type that
Reflection\ComponentProperties.cs (5)
252
if (property.GetCustomAttribute<ParameterAttribute>()?.
CaptureUnmatchedValues
== true)
262
$"'{nameof(ParameterAttribute)}.{nameof(ParameterAttribute.
CaptureUnmatchedValues
)}'. Only a single property " +
263
$"per type can use '{nameof(ParameterAttribute)}.{nameof(ParameterAttribute.
CaptureUnmatchedValues
)}'. Properties:" + Environment.NewLine +
272
$"with '{nameof(ParameterAttribute)}.{nameof(ParameterAttribute.
CaptureUnmatchedValues
)}' because it has the wrong type. " +
340
if (parameterAttribute != null && parameterAttribute.
CaptureUnmatchedValues
)