8 references to IndexerTypeName
Microsoft.CodeAnalysis.Razor.Compiler (6)
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 (1)
443var expectedTypeName = property.IsIndexerNameMatch ? property.BoundAttribute.IndexerTypeName : property.BoundAttribute.TypeName;
Language\Legacy\TagHelperBlockRewriter.cs (1)
482? match.Attribute.IndexerTypeName
Mvc\ModelExpressionPass.cs (1)
40string.Equals(node.BoundAttribute.IndexerTypeName, ModelExpressionTypeName, StringComparison.Ordinal)))
Mvc\ViewComponentTagHelperTargetExtensionBase.cs (1)
128if (attribute.IndexerTypeName != null)
rzc (2)
Json\ObjectReaders_TagHelpers.cs (1)
90var indexerTypeNameObject = ReadTypeNameObject(reader, nameof(BoundAttributeDescriptor.IndexerTypeName));
Json\ObjectWriters_TagHelpers.cs (1)
124WriteTypeNameObject(writer, nameof(value.IndexerTypeName), value.IndexerTypeNameObject);