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