7 references to ViewComponentSuffix
Microsoft.CodeAnalysis.Razor.Compiler (7)
Language\SymbolCache.NamedTypeSymbolData.IsViewComponentResult.cs (1)
34
IsViewComponent = symbol.Name.EndsWith(ViewComponentTypes.
ViewComponentSuffix
, StringComparison.Ordinal) ||
Mvc.Version1_X\ViewComponentTagHelperDescriptorFactory.cs (2)
263
if (componentType.Name.EndsWith(ViewComponentTypes.
ViewComponentSuffix
, StringComparison.OrdinalIgnoreCase))
265
return componentType.Name.Substring(0, componentType.Name.Length - ViewComponentTypes.
ViewComponentSuffix
.Length);
Mvc.Version2_X\ViewComponentTagHelperDescriptorFactory.cs (2)
278
if (componentType.Name.EndsWith(ViewComponentTypes.
ViewComponentSuffix
, StringComparison.OrdinalIgnoreCase))
280
return componentType.Name.Substring(0, componentType.Name.Length - ViewComponentTypes.
ViewComponentSuffix
.Length);
Mvc\ViewComponentTagHelperDescriptorFactory.cs (2)
281
if (componentType.Name.EndsWith(ViewComponentTypes.
ViewComponentSuffix
, StringComparison.OrdinalIgnoreCase))
283
return componentType.Name.Substring(0, componentType.Name.Length - ViewComponentTypes.
ViewComponentSuffix
.Length);