1 write to BoundAttribute
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\Components\ComponentLoweringPass.cs (1)
574
BoundAttribute
= attribute,
11 references to BoundAttribute
Microsoft.CodeAnalysis.Razor.Compiler (11)
Language\Components\ComponentGenericTypePass.cs (2)
235
if (TryFindGenericTypeNames(attribute.
BoundAttribute
, globallyQualifiedTypeName: null, out var typeParameters))
397
if (childContent.
BoundAttribute
?.IsGenericTypedProperty() == true && childContent.TypeName != null)
Language\Components\ComponentNodeWriter.cs (5)
453
if (childContent.
BoundAttribute
!= null && !childContent.
BoundAttribute
.IsGenericTypedProperty())
455
typeName = childContent.
BoundAttribute
.GetGloballyQualifiedTypeName();
533
if (node.
BoundAttribute
?.GetGloballyQualifiedTypeName() is string typeName &&
534
!node.
BoundAttribute
.IsGenericTypedProperty())
Language\Intermediate\ComponentChildContentIntermediateNode.cs (4)
14
public string AttributeName =>
BoundAttribute
?.Name ?? ComponentsApi.RenderTreeBuilder.ChildContent;
20
public bool IsParameterized =>
BoundAttribute
?.IsParameterizedChildContentProperty() ?? false;
46
formatter.WriteProperty(nameof(
BoundAttribute
),
BoundAttribute
?.DisplayName);