8 references to IsWeaklyTyped
Microsoft.CodeAnalysis.Razor.Compiler (6)
Language\Components\ComponentBindLoweringPass.cs (3)
576valueNode.TypeName = valueAttribute?.IsWeaklyTyped == false ? valueAttribute.TypeName : null; 599changeNode.TypeName = changeAttribute?.IsWeaklyTyped == false ? changeAttribute.TypeName : null; 626expressionNode.TypeName = expressionAttribute.IsWeaklyTyped ? null : expressionAttribute.TypeName;
Language\Components\ComponentRuntimeNodeWriter.cs (1)
796return n.BoundAttribute != null && !n.BoundAttribute.IsWeaklyTyped;
Language\Intermediate\ComponentAttributeIntermediateNode.cs (2)
86TypeName = propertyNode.BoundAttribute.IsWeaklyTyped ? null : propertyNode.BoundAttribute.TypeName; 104TypeName = node.BoundAttribute.IsWeaklyTyped
Microsoft.CodeAnalysis.Razor.UnitTests (2)
EventHandlerTagHelperProducerTest.cs (2)
103Assert.True(attribute.IsWeaklyTyped); 237Assert.True(attribute.IsWeaklyTyped);