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