1 write to BoundAttributes
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\TagHelperDescriptor.cs (1)
82
BoundAttributes
= attributeDescriptors.NullToEmpty();
26 references to BoundAttributes
Microsoft.CodeAnalysis.Razor.Compiler (23)
Language\Components\ComponentBindLoweringPass.cs (1)
759
var boundAttributes = componentTagHelper.
BoundAttributes
;
Language\Components\ComponentGenericTypePass.cs (1)
423
foreach (var attribute in node.Component.
BoundAttributes
)
Language\Components\ComponentLoweringPass.cs (4)
316
foreach (var attr in genericComponent.
BoundAttributes
)
325
foreach (var attr in nonGenericComponent.
BoundAttributes
)
516
var attribute = _component.Component.
BoundAttributes
539
var attribute = _component.Component.
BoundAttributes
Language\Components\TagHelperDescriptorExtensions.cs (4)
57
foreach (var boundAttribute in tagHelper.
BoundAttributes
)
131
foreach (var attribute in tagHelper.
BoundAttributes
)
147
foreach (var attribute in tagHelper.
BoundAttributes
)
164
foreach (var attribute in tagHelper.
BoundAttributes
)
Language\TagHelperDescriptor.cs (5)
91
foreach (var boundAttribute in
BoundAttributes
)
120
foreach (var descriptor in
BoundAttributes
)
139
ImmutableInterlocked.InterlockedInitialize(ref _editorRequiredAttributes, GetEditorRequiredAttributes(
BoundAttributes
));
185
foreach (var boundAttribute in
BoundAttributes
)
213
TagMatchingRules,
BoundAttributes
, AllowedChildTags,
Language\TagHelperMatchingConventions.cs (2)
229
foreach (var attribute in descriptor.
BoundAttributes
)
240
foreach (var attribute in descriptor.
BoundAttributes
)
Language\TagHelpers\Producers\BindTagHelperProducer.cs (2)
405
foreach (var changeAttribute in tagHelper.
BoundAttributes
)
424
foreach (var attribute in tagHelper.
BoundAttributes
)
Mvc.Version1_X\ViewComponentTagHelperTargetExtension.cs (1)
19
var propertyNames = tagHelper.
BoundAttributes
.Select(attribute => attribute.PropertyName);
Mvc.Version2_X\ViewComponentTagHelperTargetExtension.cs (1)
19
var propertyNames = tagHelper.
BoundAttributes
.Select(attribute => attribute.PropertyName);
Mvc\ViewComponentTagHelperTargetExtension.cs (1)
57
foreach (var attribute in tagHelper.
BoundAttributes
)
Mvc\ViewComponentTagHelperTargetExtensionBase.cs (1)
121
foreach (var attribute in tagHelper.
BoundAttributes
)
rzc (3)
Json\ObjectReaders_TagHelpers.cs (1)
27
var boundAttributes = reader.ReadImmutableArrayOrEmpty(nameof(TagHelperDescriptor.
BoundAttributes
), ReadBoundAttribute);
Json\ObjectWriters_TagHelpers.cs (2)
25
writer.WriteArrayIfNotDefaultOrEmpty(nameof(value.
BoundAttributes
), value.
BoundAttributes
, WriteBoundAttribute);