// namespace Microsoft.AspNetCore.Razor.Language { using System.Globalization; using System.Reflection; using System.Resources; internal static class Resources { private static readonly ResourceManager _resourceManager = new ResourceManager("Microsoft.AspNetCore.Razor.Language.Resources", typeof(Resources).GetTypeInfo().Assembly); /// /// Value cannot be null or an empty string. /// internal static string ArgumentCannotBeNullOrEmpty { get => GetString("ArgumentCannotBeNullOrEmpty"); } /// /// Value cannot be null or an empty string. /// internal static string FormatArgumentCannotBeNullOrEmpty() => GetString("ArgumentCannotBeNullOrEmpty"); /// /// The '{0}' feature requires a '{1}' provided by the '{2}'. /// internal static string FeatureDependencyMissing { get => GetString("FeatureDependencyMissing"); } /// /// The '{0}' feature requires a '{1}' provided by the '{2}'. /// internal static string FormatFeatureDependencyMissing(object p0, object p1, object p2) => string.Format(CultureInfo.CurrentCulture, GetString("FeatureDependencyMissing"), p0, p1, p2); /// /// Invalid tag helper directive look up text '{0}'. The correct look up text format is: "name, assemblyName". /// internal static string InvalidTagHelperLookupText { get => GetString("InvalidTagHelperLookupText"); } /// /// Invalid tag helper directive look up text '{0}'. The correct look up text format is: "name, assemblyName". /// internal static string FormatInvalidTagHelperLookupText(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("InvalidTagHelperLookupText"), p0); /// /// Invalid tag helper directive '{0}' value. '{1}' is not allowed in prefix '{2}'. /// internal static string InvalidTagHelperPrefixValue { get => GetString("InvalidTagHelperPrefixValue"); } /// /// Invalid tag helper directive '{0}' value. '{1}' is not allowed in prefix '{2}'. /// internal static string FormatInvalidTagHelperPrefixValue(object p0, object p1, object p2) => string.Format(CultureInfo.CurrentCulture, GetString("InvalidTagHelperPrefixValue"), p0, p1, p2); /// /// The '{0}' operation is not valid when the builder is empty. /// internal static string IntermediateNodeBuilder_PopInvalid { get => GetString("IntermediateNodeBuilder_PopInvalid"); } /// /// The '{0}' operation is not valid when the builder is empty. /// internal static string FormatIntermediateNodeBuilder_PopInvalid(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("IntermediateNodeBuilder_PopInvalid"), p0); /// /// The specified encoding '{0}' does not match the content's encoding '{1}'. /// internal static string MismatchedContentEncoding { get => GetString("MismatchedContentEncoding"); } /// /// The specified encoding '{0}' does not match the content's encoding '{1}'. /// internal static string FormatMismatchedContentEncoding(object p0, object p1) => string.Format(CultureInfo.CurrentCulture, GetString("MismatchedContentEncoding"), p0, p1); /// /// The '{0}' phase requires a '{1}' provided by the '{2}'. /// internal static string PhaseDependencyMissing { get => GetString("PhaseDependencyMissing"); } /// /// The '{0}' phase requires a '{1}' provided by the '{2}'. /// internal static string FormatPhaseDependencyMissing(object p0, object p1, object p2) => string.Format(CultureInfo.CurrentCulture, GetString("PhaseDependencyMissing"), p0, p1, p2); /// /// The phase must be initialized by setting the '{0}' property. /// internal static string PhaseMustBeInitialized { get => GetString("PhaseMustBeInitialized"); } /// /// The phase must be initialized by setting the '{0}' property. /// internal static string FormatPhaseMustBeInitialized(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("PhaseMustBeInitialized"), p0); /// /// Tag helper directive assembly name cannot be null or empty. /// internal static string TagHelperAssemblyNameCannotBeEmptyOrNull { get => GetString("TagHelperAssemblyNameCannotBeEmptyOrNull"); } /// /// Tag helper directive assembly name cannot be null or empty. /// internal static string FormatTagHelperAssemblyNameCannotBeEmptyOrNull() => GetString("TagHelperAssemblyNameCannotBeEmptyOrNull"); /// /// Path must begin with a forward slash '/'. /// internal static string RazorProject_PathMustStartWithForwardSlash { get => GetString("RazorProject_PathMustStartWithForwardSlash"); } /// /// Path must begin with a forward slash '/'. /// internal static string FormatRazorProject_PathMustStartWithForwardSlash() => GetString("RazorProject_PathMustStartWithForwardSlash"); /// /// A non-optional directive token cannot follow an optional directive token. /// internal static string DirectiveDescriptor_InvalidNonOptionalToken { get => GetString("DirectiveDescriptor_InvalidNonOptionalToken"); } /// /// A non-optional directive token cannot follow an optional directive token. /// internal static string FormatDirectiveDescriptor_InvalidNonOptionalToken() => GetString("DirectiveDescriptor_InvalidNonOptionalToken"); /// /// The document of kind '{0}' does not have a '{1}'. The document classifier must set a value for '{2}'. /// internal static string DocumentMissingTarget { get => GetString("DocumentMissingTarget"); } /// /// The document of kind '{0}' does not have a '{1}'. The document classifier must set a value for '{2}'. /// internal static string FormatDocumentMissingTarget(object p0, object p1, object p2) => string.Format(CultureInfo.CurrentCulture, GetString("DocumentMissingTarget"), p0, p1, p2); /// /// The item '{0}' could not be found. /// internal static string RazorTemplateEngine_ItemCouldNotBeFound { get => GetString("RazorTemplateEngine_ItemCouldNotBeFound"); } /// /// The item '{0}' could not be found. /// internal static string FormatRazorTemplateEngine_ItemCouldNotBeFound(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("RazorTemplateEngine_ItemCouldNotBeFound"), p0); /// /// Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with name '{2}' because the name contains a '{3}' character. /// internal static string TagHelper_InvalidBoundAttributeName { get => GetString("TagHelper_InvalidBoundAttributeName"); } /// /// Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with name '{2}' because the name contains a '{3}' character. /// internal static string FormatTagHelper_InvalidBoundAttributeName(object p0, object p1, object p2, object p3) => string.Format(CultureInfo.CurrentCulture, GetString("TagHelper_InvalidBoundAttributeName"), p0, p1, p2, p3); /// /// Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with name '{2}' because the name starts with '{3}'. /// internal static string TagHelper_InvalidBoundAttributeNameStartsWith { get => GetString("TagHelper_InvalidBoundAttributeNameStartsWith"); } /// /// Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with name '{2}' because the name starts with '{3}'. /// internal static string FormatTagHelper_InvalidBoundAttributeNameStartsWith(object p0, object p1, object p2, object p3) => string.Format(CultureInfo.CurrentCulture, GetString("TagHelper_InvalidBoundAttributeNameStartsWith"), p0, p1, p2, p3); /// /// Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with a null or empty name. /// internal static string TagHelper_InvalidBoundAttributeNullOrWhitespace { get => GetString("TagHelper_InvalidBoundAttributeNullOrWhitespace"); } /// /// Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with a null or empty name. /// internal static string FormatTagHelper_InvalidBoundAttributeNullOrWhitespace(object p0, object p1) => string.Format(CultureInfo.CurrentCulture, GetString("TagHelper_InvalidBoundAttributeNullOrWhitespace"), p0, p1); /// /// Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with prefix '{2}' because the prefix contains a '{3}' character. /// internal static string TagHelper_InvalidBoundAttributePrefix { get => GetString("TagHelper_InvalidBoundAttributePrefix"); } /// /// Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with prefix '{2}' because the prefix contains a '{3}' character. /// internal static string FormatTagHelper_InvalidBoundAttributePrefix(object p0, object p1, object p2, object p3) => string.Format(CultureInfo.CurrentCulture, GetString("TagHelper_InvalidBoundAttributePrefix"), p0, p1, p2, p3); /// /// Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with prefix '{2}' because the prefix starts with '{3}'. /// internal static string TagHelper_InvalidBoundAttributePrefixStartsWith { get => GetString("TagHelper_InvalidBoundAttributePrefixStartsWith"); } /// /// Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with prefix '{2}' because the prefix starts with '{3}'. /// internal static string FormatTagHelper_InvalidBoundAttributePrefixStartsWith(object p0, object p1, object p2, object p3) => string.Format(CultureInfo.CurrentCulture, GetString("TagHelper_InvalidBoundAttributePrefixStartsWith"), p0, p1, p2, p3); /// /// Invalid restricted child '{1}' for tag helper '{0}'. Tag helpers cannot restrict child elements that contain a '{2}' character. /// internal static string TagHelper_InvalidRestrictedChild { get => GetString("TagHelper_InvalidRestrictedChild"); } /// /// Invalid restricted child '{1}' for tag helper '{0}'. Tag helpers cannot restrict child elements that contain a '{2}' character. /// internal static string FormatTagHelper_InvalidRestrictedChild(object p0, object p1, object p2) => string.Format(CultureInfo.CurrentCulture, GetString("TagHelper_InvalidRestrictedChild"), p0, p1, p2); /// /// Invalid restricted child for tag helper '{0}'. Name cannot be null or whitespace. /// internal static string TagHelper_InvalidRestrictedChildNullOrWhitespace { get => GetString("TagHelper_InvalidRestrictedChildNullOrWhitespace"); } /// /// Invalid restricted child for tag helper '{0}'. Name cannot be null or whitespace. /// internal static string FormatTagHelper_InvalidRestrictedChildNullOrWhitespace(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("TagHelper_InvalidRestrictedChildNullOrWhitespace"), p0); /// /// Tag helpers cannot target attribute name '{0}' because it contains a '{1}' character. /// internal static string TagHelper_InvalidTargetedAttributeName { get => GetString("TagHelper_InvalidTargetedAttributeName"); } /// /// Tag helpers cannot target attribute name '{0}' because it contains a '{1}' character. /// internal static string FormatTagHelper_InvalidTargetedAttributeName(object p0, object p1) => string.Format(CultureInfo.CurrentCulture, GetString("TagHelper_InvalidTargetedAttributeName"), p0, p1); /// /// Targeted attribute name cannot be null or whitespace. /// internal static string TagHelper_InvalidTargetedAttributeNameNullOrWhitespace { get => GetString("TagHelper_InvalidTargetedAttributeNameNullOrWhitespace"); } /// /// Targeted attribute name cannot be null or whitespace. /// internal static string FormatTagHelper_InvalidTargetedAttributeNameNullOrWhitespace() => GetString("TagHelper_InvalidTargetedAttributeNameNullOrWhitespace"); /// /// Tag helpers cannot target parent tag name '{0}' because it contains a '{1}' character. /// internal static string TagHelper_InvalidTargetedParentTagName { get => GetString("TagHelper_InvalidTargetedParentTagName"); } /// /// Tag helpers cannot target parent tag name '{0}' because it contains a '{1}' character. /// internal static string FormatTagHelper_InvalidTargetedParentTagName(object p0, object p1) => string.Format(CultureInfo.CurrentCulture, GetString("TagHelper_InvalidTargetedParentTagName"), p0, p1); /// /// Targeted parent tag name cannot be null or whitespace. /// internal static string TagHelper_InvalidTargetedParentTagNameNullOrWhitespace { get => GetString("TagHelper_InvalidTargetedParentTagNameNullOrWhitespace"); } /// /// Targeted parent tag name cannot be null or whitespace. /// internal static string FormatTagHelper_InvalidTargetedParentTagNameNullOrWhitespace() => GetString("TagHelper_InvalidTargetedParentTagNameNullOrWhitespace"); /// /// Tag helpers cannot target tag name '{0}' because it contains a '{1}' character. /// internal static string TagHelper_InvalidTargetedTagName { get => GetString("TagHelper_InvalidTargetedTagName"); } /// /// Tag helpers cannot target tag name '{0}' because it contains a '{1}' character. /// internal static string FormatTagHelper_InvalidTargetedTagName(object p0, object p1) => string.Format(CultureInfo.CurrentCulture, GetString("TagHelper_InvalidTargetedTagName"), p0, p1); /// /// Targeted tag name cannot be null or whitespace. /// internal static string TagHelper_InvalidTargetedTagNameNullOrWhitespace { get => GetString("TagHelper_InvalidTargetedTagNameNullOrWhitespace"); } /// /// Targeted tag name cannot be null or whitespace. /// internal static string FormatTagHelper_InvalidTargetedTagNameNullOrWhitespace() => GetString("TagHelper_InvalidTargetedTagNameNullOrWhitespace"); /// /// The node '{0}' is not the owner of change '{1}'. /// internal static string InvalidOperation_SpanIsNotChangeOwner { get => GetString("InvalidOperation_SpanIsNotChangeOwner"); } /// /// The node '{0}' is not the owner of change '{1}'. /// internal static string FormatInvalidOperation_SpanIsNotChangeOwner(object p0, object p1) => string.Format(CultureInfo.CurrentCulture, GetString("InvalidOperation_SpanIsNotChangeOwner"), p0, p1); /// /// Invalid directive keyword '{0}'. Directives must have a non-empty keyword that consists only of letters. /// internal static string DirectiveDescriptor_InvalidDirectiveKeyword { get => GetString("DirectiveDescriptor_InvalidDirectiveKeyword"); } /// /// Invalid directive keyword '{0}'. Directives must have a non-empty keyword that consists only of letters. /// internal static string FormatDirectiveDescriptor_InvalidDirectiveKeyword(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("DirectiveDescriptor_InvalidDirectiveKeyword"), p0); /// /// The feature must be initialized by setting the '{0}' property. /// internal static string FeatureMustBeInitialized { get => GetString("FeatureMustBeInitialized"); } /// /// The feature must be initialized by setting the '{0}' property. /// internal static string FormatFeatureMustBeInitialized(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("FeatureMustBeInitialized"), p0); /// /// The document type '{0}' does not support the extension '{1}'. /// internal static string Diagnostic_CodeTarget_UnsupportedExtension { get => GetString("Diagnostic_CodeTarget_UnsupportedExtension"); } /// /// The document type '{0}' does not support the extension '{1}'. /// internal static string FormatDiagnostic_CodeTarget_UnsupportedExtension(object p0, object p1) => string.Format(CultureInfo.CurrentCulture, GetString("Diagnostic_CodeTarget_UnsupportedExtension"), p0, p1); /// /// The '{0}` directive must appear at the start of the line. /// internal static string DirectiveMustAppearAtStartOfLine { get => GetString("DirectiveMustAppearAtStartOfLine"); } /// /// The '{0}` directive must appear at the start of the line. /// internal static string FormatDirectiveMustAppearAtStartOfLine(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("DirectiveMustAppearAtStartOfLine"), p0); /// /// The '{0}' directives value(s) must be separated by whitespace. /// internal static string DirectiveTokensMustBeSeparatedByWhitespace { get => GetString("DirectiveTokensMustBeSeparatedByWhitespace"); } /// /// The '{0}' directives value(s) must be separated by whitespace. /// internal static string FormatDirectiveTokensMustBeSeparatedByWhitespace(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("DirectiveTokensMustBeSeparatedByWhitespace"), p0); /// /// The key must not be null. /// internal static string KeyMustNotBeNull { get => GetString("KeyMustNotBeNull"); } /// /// The key must not be null. /// internal static string FormatKeyMustNotBeNull() => GetString("KeyMustNotBeNull"); /// /// The reference is invalid. The node '{0}' could not be found as a child of '{1}'. /// internal static string IntermediateNodeReference_NodeNotFound { get => GetString("IntermediateNodeReference_NodeNotFound"); } /// /// The reference is invalid. The node '{0}' could not be found as a child of '{1}'. /// internal static string FormatIntermediateNodeReference_NodeNotFound(object p0, object p1) => string.Format(CultureInfo.CurrentCulture, GetString("IntermediateNodeReference_NodeNotFound"), p0, p1); /// /// The reference is invalid. References initialized with the default constructor cannot modify nodes. /// internal static string IntermediateNodeReference_NotInitialized { get => GetString("IntermediateNodeReference_NotInitialized"); } /// /// The reference is invalid. References initialized with the default constructor cannot modify nodes. /// internal static string FormatIntermediateNodeReference_NotInitialized() => GetString("IntermediateNodeReference_NotInitialized"); /// /// The node '{0}' has a read-only child collection and cannot be modified. /// internal static string IntermediateNodeReference_CollectionIsReadOnly { get => GetString("IntermediateNodeReference_CollectionIsReadOnly"); } /// /// The node '{0}' has a read-only child collection and cannot be modified. /// internal static string FormatIntermediateNodeReference_CollectionIsReadOnly(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("IntermediateNodeReference_CollectionIsReadOnly"), p0); /// /// The '{0}' directive may only occur once per document. /// internal static string DuplicateDirective { get => GetString("DuplicateDirective"); } /// /// The '{0}' directive may only occur once per document. /// internal static string FormatDuplicateDirective(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("DuplicateDirective"), p0); /// /// Block directive '{0}' cannot be imported. /// internal static string BlockDirectiveCannotBeImported { get => GetString("BlockDirectiveCannotBeImported"); } /// /// Block directive '{0}' cannot be imported. /// internal static string FormatBlockDirectiveCannotBeImported(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("BlockDirectiveCannotBeImported"), p0); /// /// Unreachable code. This can happen when a new {0} is introduced. /// internal static string UnexpectedDirectiveKind { get => GetString("UnexpectedDirectiveKind"); } /// /// Unreachable code. This can happen when a new {0} is introduced. /// internal static string FormatUnexpectedDirectiveKind(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("UnexpectedDirectiveKind"), p0); /// /// The '{0}' requires a '{1}' delegate to be set. /// internal static string RenderingContextRequiresDelegate { get => GetString("RenderingContextRequiresDelegate"); } /// /// The '{0}' requires a '{1}' delegate to be set. /// internal static string FormatRenderingContextRequiresDelegate(object p0, object p1) => string.Format(CultureInfo.CurrentCulture, GetString("RenderingContextRequiresDelegate"), p0, p1); /// /// The '{0}' node type can only be used as a direct child of a '{1}' node. /// internal static string IntermediateNodes_InvalidParentNode { get => GetString("IntermediateNodes_InvalidParentNode"); } /// /// The '{0}' node type can only be used as a direct child of a '{1}' node. /// internal static string FormatIntermediateNodes_InvalidParentNode(object p0, object p1) => string.Format(CultureInfo.CurrentCulture, GetString("IntermediateNodes_InvalidParentNode"), p0, p1); /// /// Invalid newline sequence '{0}'. Support newline sequences are '\r\n' and '\n'. /// internal static string CodeWriter_InvalidNewLine { get => GetString("CodeWriter_InvalidNewLine"); } /// /// Invalid newline sequence '{0}'. Support newline sequences are '\r\n' and '\n'. /// internal static string FormatCodeWriter_InvalidNewLine(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("CodeWriter_InvalidNewLine"), p0); /// /// Register Tag Helpers for use in the current document. /// internal static string AddTagHelperDirective_Description { get => GetString("AddTagHelperDirective_Description"); } /// /// Register Tag Helpers for use in the current document. /// internal static string FormatAddTagHelperDirective_Description() => GetString("AddTagHelperDirective_Description"); /// /// Specify a C# code block. /// internal static string FunctionsDirective_Description { get => GetString("FunctionsDirective_Description"); } /// /// Specify a C# code block. /// internal static string FormatFunctionsDirective_Description() => GetString("FunctionsDirective_Description"); /// /// Specify the base class for the current document. /// internal static string InheritsDirective_Description { get => GetString("InheritsDirective_Description"); } /// /// Specify the base class for the current document. /// internal static string FormatInheritsDirective_Description() => GetString("InheritsDirective_Description"); /// /// Remove Tag Helpers for use in the current document. /// internal static string RemoveTagHelperDirective_Description { get => GetString("RemoveTagHelperDirective_Description"); } /// /// Remove Tag Helpers for use in the current document. /// internal static string FormatRemoveTagHelperDirective_Description() => GetString("RemoveTagHelperDirective_Description"); /// /// Define a section to be rendered in the configured layout page. /// internal static string SectionDirective_Description { get => GetString("SectionDirective_Description"); } /// /// Define a section to be rendered in the configured layout page. /// internal static string FormatSectionDirective_Description() => GetString("SectionDirective_Description"); /// /// Specify a prefix that is required in an element name for it to be included in Tag Helper processing. /// internal static string TagHelperPrefixDirective_Description { get => GetString("TagHelperPrefixDirective_Description"); } /// /// Specify a prefix that is required in an element name for it to be included in Tag Helper processing. /// internal static string FormatTagHelperPrefixDirective_Description() => GetString("TagHelperPrefixDirective_Description"); /// /// Add tag helpers from the specified type name and assembly name. Specify '*' for the type name to include all tag helper types from the specified assembly. /// internal static string AddTagHelperDirective_StringToken_Description { get => GetString("AddTagHelperDirective_StringToken_Description"); } /// /// Add tag helpers from the specified type name and assembly name. Specify '*' for the type name to include all tag helper types from the specified assembly. /// internal static string FormatAddTagHelperDirective_StringToken_Description() => GetString("AddTagHelperDirective_StringToken_Description"); /// /// TypeName, AssemblyName /// internal static string AddTagHelperDirective_StringToken_Name { get => GetString("AddTagHelperDirective_StringToken_Name"); } /// /// TypeName, AssemblyName /// internal static string FormatAddTagHelperDirective_StringToken_Name() => GetString("AddTagHelperDirective_StringToken_Name"); /// /// The base type that the current page inherits. /// internal static string InheritsDirective_TypeToken_Description { get => GetString("InheritsDirective_TypeToken_Description"); } /// /// The base type that the current page inherits. /// internal static string FormatInheritsDirective_TypeToken_Description() => GetString("InheritsDirective_TypeToken_Description"); /// /// TypeName /// internal static string InheritsDirective_TypeToken_Name { get => GetString("InheritsDirective_TypeToken_Name"); } /// /// TypeName /// internal static string FormatInheritsDirective_TypeToken_Name() => GetString("InheritsDirective_TypeToken_Name"); /// /// Remove tag helpers from the specified type name and assembly name. Specify '*' for the type name to remove all tag helper types from the specified assembly. /// internal static string RemoveTagHelperDirective_StringToken_Description { get => GetString("RemoveTagHelperDirective_StringToken_Description"); } /// /// Remove tag helpers from the specified type name and assembly name. Specify '*' for the type name to remove all tag helper types from the specified assembly. /// internal static string FormatRemoveTagHelperDirective_StringToken_Description() => GetString("RemoveTagHelperDirective_StringToken_Description"); /// /// TypeName, AssemblyName /// internal static string RemoveTagHelperDirective_StringToken_Name { get => GetString("RemoveTagHelperDirective_StringToken_Name"); } /// /// TypeName, AssemblyName /// internal static string FormatRemoveTagHelperDirective_StringToken_Name() => GetString("RemoveTagHelperDirective_StringToken_Name"); /// /// The tag prefix to apply to tag helpers. /// internal static string TagHelperPrefixDirective_PrefixToken_Description { get => GetString("TagHelperPrefixDirective_PrefixToken_Description"); } /// /// The tag prefix to apply to tag helpers. /// internal static string FormatTagHelperPrefixDirective_PrefixToken_Description() => GetString("TagHelperPrefixDirective_PrefixToken_Description"); /// /// Prefix /// internal static string TagHelperPrefixDirective_PrefixToken_Name { get => GetString("TagHelperPrefixDirective_PrefixToken_Name"); } /// /// Prefix /// internal static string FormatTagHelperPrefixDirective_PrefixToken_Name() => GetString("TagHelperPrefixDirective_PrefixToken_Name"); /// /// The name of the section. /// internal static string SectionDirective_NameToken_Description { get => GetString("SectionDirective_NameToken_Description"); } /// /// The name of the section. /// internal static string FormatSectionDirective_NameToken_Description() => GetString("SectionDirective_NameToken_Description"); /// /// SectionName /// internal static string SectionDirective_NameToken_Name { get => GetString("SectionDirective_NameToken_Name"); } /// /// SectionName /// internal static string FormatSectionDirective_NameToken_Name() => GetString("SectionDirective_NameToken_Name"); /// /// The Razor language version '{0}' is unrecognized or not supported by this version of Razor. /// internal static string RazorLanguageVersion_InvalidVersion { get => GetString("RazorLanguageVersion_InvalidVersion"); } /// /// The Razor language version '{0}' is unrecognized or not supported by this version of Razor. /// internal static string FormatRazorLanguageVersion_InvalidVersion(object p0) => string.Format(CultureInfo.CurrentCulture, GetString("RazorLanguageVersion_InvalidVersion"), p0); private static string GetString(string name, params string[] formatterNames) { var value = _resourceManager.GetString(name); System.Diagnostics.Debug.Assert(value != null); if (formatterNames != null) { for (var i = 0; i < formatterNames.Length; i++) { value = value.Replace("{" + formatterNames[i] + "}", "{" + i + "}"); } } return value; } } }