17 lines
619 B
C#
17 lines
619 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
namespace Microsoft.AspNetCore.Mvc.Analyzers
|
|
{
|
|
internal static class SymbolNames
|
|
{
|
|
public const string IHtmlHelperType = "Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper";
|
|
|
|
public const string HtmlHelperPartialExtensionsType = "Microsoft.AspNetCore.Mvc.Rendering.HtmlHelperPartialExtensions";
|
|
|
|
public const string PartialMethod = "Partial";
|
|
|
|
public const string RenderPartialMethod = "RenderPartial";
|
|
}
|
|
}
|