XmlDocsKeys
Contains constants for element and attribute names use in XML-docs.
using System.Runtime.CompilerServices;
namespace Namotion.Reflection
{
[System.Runtime.CompilerServices.NullableContext(1)]
[System.Runtime.CompilerServices.Nullable(0)]
internal static class XmlDocsKeys
{
public const string SummaryElement = "summary";
public const string RemarksElement = "remarks";
public const string ParamElement = "param";
public const string ParamNameAttribute = "name";
public const string ParamRefElement = "paramref";
public const string ParamRefNameAttribute = "name";
public const string SeeElement = "see";
public const string SeeLangwordAttribute = "langword";
public const string SeeCrefAttribute = "cref";
public const string SeeHrefAttribute = "href";
public const string ReturnsElement = "returns";
public const string InheritDocElement = "inheritdoc";
}
}