5 references to GetGloballyQualifiedTypeName
Microsoft.CodeAnalysis.Razor.Compiler (4)
Language\Components\ComponentGenericTypePass.cs (1)
329var globallyQualifiedTypeName = attribute.BoundAttribute?.GetGloballyQualifiedTypeName();
Language\Components\ComponentNodeWriter.cs (3)
455typeName = childContent.BoundAttribute.GetGloballyQualifiedTypeName(); 521else if (node.BoundAttribute?.GetGloballyQualifiedTypeName() is string typeName) 533if (node.BoundAttribute?.GetGloballyQualifiedTypeName() is string typeName &&
Microsoft.CodeAnalysis.Razor.UnitTests (1)
ComponentTagHelperProducerTest.cs (1)
125Assert.Equal("global::System.String", attribute.GetGloballyQualifiedTypeName());