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