20 references to TypeName
Microsoft.CodeAnalysis.Razor.Compiler (18)
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\ComponentGenericTypePass.cs (2)
283typeParameters = ParseTypeParameters(globallyQualifiedTypeName ?? boundAttribute.TypeName); 286typeParameters = new[] { boundAttribute.TypeName };
Language\Components\ComponentLoweringPass.cs (1)
576TypeName = attribute?.TypeName ?? ComponentsApi.RenderFragment.FullTypeName,
Language\Components\TagHelperBoundAttributeDescriptorExtensions.cs (1)
58attribute.TypeName != ComponentsApi.RenderFragment.FullTypeName;
Language\DefaultTagHelperResolutionPhase.LegacyTagHelperResolver.cs (2)
156var propertyType = match.IsIndexerMatch ? match.Attribute.IndexerTypeName : match.Attribute.TypeName; 181var propertyType = match.IsIndexerMatch ? match.Attribute.IndexerTypeName : match.Attribute.TypeName;
Language\Extensions\DefaultTagHelperTargetExtension.cs (2)
326.Write($"global::{node.BoundAttribute.TypeName}."); 443var expectedTypeName = property.IsIndexerNameMatch ? property.BoundAttribute.IndexerTypeName : property.BoundAttribute.TypeName;
Language\Intermediate\ComponentAttributeIntermediateNode.cs (2)
92TypeName = propertyNode.BoundAttribute.IsWeaklyTyped ? null : propertyNode.BoundAttribute.TypeName; 112: node.BoundAttribute.TypeName;
Language\Legacy\TagHelperBlockRewriter.cs (1)
483: match.Attribute.TypeName;
Language\TagHelpers\Producers\BindTagHelperProducer.cs (1)
512attribute.TypeName = changeAttribute.TypeName;
Mvc\ModelExpressionPass.cs (1)
38if (string.Equals(node.BoundAttribute.TypeName, ModelExpressionTypeName, StringComparison.Ordinal) ||
Mvc\ViewComponentTagHelperTargetExtensionBase.cs (2)
125attribute.TypeName, 131.WriteStartNewObject(attribute.TypeName)
rzc (2)
Json\ObjectReaders_TagHelpers.cs (1)
88var typeNameObject = ReadTypeNameObject(reader, nameof(BoundAttributeDescriptor.TypeName));
Json\ObjectWriters_TagHelpers.cs (1)
122WriteTypeNameObject(writer, nameof(value.TypeName), value.TypeNameObject);