File: artifacts\obj\Microsoft.AspNetCore.Mvc.Razor\Release\net9.0\Microsoft.AspNetCore.Mvc.Razor.Resources.cs
Project: src\src\Mvc\Mvc.Razor\src\Microsoft.AspNetCore.Mvc.Razor.csproj (Microsoft.AspNetCore.Mvc.Razor)
// <auto-generated>
using System.Reflection;
 
 
namespace Microsoft.AspNetCore.Mvc.Razor
{
    internal static partial class Resources
    {
        private static global::System.Resources.ResourceManager s_resourceManager;
        internal static global::System.Resources.ResourceManager ResourceManager => s_resourceManager ?? (s_resourceManager = new global::System.Resources.ResourceManager(typeof(Resources)));
        internal static global::System.Globalization.CultureInfo Culture { get; set; }
#if !NET20
        [global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
#endif
        internal static string GetResourceString(string resourceKey, string defaultValue = null) =>  ResourceManager.GetString(resourceKey, Culture);
 
        private static string GetResourceString(string resourceKey, string[] formatterNames)
        {
           var value = GetResourceString(resourceKey);
           if (formatterNames != null)
           {
               for (var i = 0; i < formatterNames.Length; i++)
               {
                   value = value.Replace("{" + formatterNames[i] + "}", "{" + i + "}");
               }
           }
           return value;
        }
 
        /// <summary>Value cannot be null or empty.</summary>
        internal static string @ArgumentCannotBeNullOrEmpty => GetResourceString("ArgumentCannotBeNullOrEmpty");
        /// <summary>One or more compilation failures occurred:</summary>
        internal static string @CompilationFailed => GetResourceString("CompilationFailed");
        /// <summary>'{0}' cannot be invoked when a Layout page is set to be executed.</summary>
        internal static string @FlushPointCannotBeInvoked => GetResourceString("FlushPointCannotBeInvoked");
        /// <summary>'{0}' cannot be invoked when a Layout page is set to be executed.</summary>
        internal static string FormatFlushPointCannotBeInvoked(object p0)
           => string.Format(Culture, GetResourceString("FlushPointCannotBeInvoked"), p0);
 
        /// <summary>The layout view '{0}' could not be located. The following locations were searched:{1}</summary>
        internal static string @LayoutCannotBeLocated => GetResourceString("LayoutCannotBeLocated");
        /// <summary>The layout view '{0}' could not be located. The following locations were searched:{1}</summary>
        internal static string FormatLayoutCannotBeLocated(object p0, object p1)
           => string.Format(Culture, GetResourceString("LayoutCannotBeLocated"), p0, p1);
 
        /// <summary>Layout page '{0}' cannot be rendered after '{1}' has been invoked.</summary>
        internal static string @LayoutCannotBeRendered => GetResourceString("LayoutCannotBeRendered");
        /// <summary>Layout page '{0}' cannot be rendered after '{1}' has been invoked.</summary>
        internal static string FormatLayoutCannotBeRendered(object p0, object p1)
           => string.Format(Culture, GetResourceString("LayoutCannotBeRendered"), p0, p1);
 
        /// <summary>There is no active writing scope to end.</summary>
        internal static string @RazorPage_ThereIsNoActiveWritingScopeToEnd => GetResourceString("RazorPage_ThereIsNoActiveWritingScopeToEnd");
        /// <summary>The {0} operation cannot be performed while inside a writing scope in '{1}'.</summary>
        internal static string @RazorPage_CannotFlushWhileInAWritingScope => GetResourceString("RazorPage_CannotFlushWhileInAWritingScope");
        /// <summary>The {0} operation cannot be performed while inside a writing scope in '{1}'.</summary>
        internal static string FormatRazorPage_CannotFlushWhileInAWritingScope(object p0, object p1)
           => string.Format(Culture, GetResourceString("RazorPage_CannotFlushWhileInAWritingScope"), p0, p1);
 
        /// <summary>{0} invocation in '{1}' is invalid. {0} can only be called from a layout page.</summary>
        internal static string @RazorPage_MethodCannotBeCalled => GetResourceString("RazorPage_MethodCannotBeCalled");
        /// <summary>{0} invocation in '{1}' is invalid. {0} can only be called from a layout page.</summary>
        internal static string FormatRazorPage_MethodCannotBeCalled(object p0, object p1)
           => string.Format(Culture, GetResourceString("RazorPage_MethodCannotBeCalled"), p0, p1);
 
        /// <summary>{0} has not been called for the page at '{1}'. To ignore call {2}().</summary>
        internal static string @RenderBodyNotCalled => GetResourceString("RenderBodyNotCalled");
        /// <summary>{0} has not been called for the page at '{1}'. To ignore call {2}().</summary>
        internal static string FormatRenderBodyNotCalled(object p0, object p1, object p2)
           => string.Format(Culture, GetResourceString("RenderBodyNotCalled"), p0, p1, p2);
 
        /// <summary>Section '{0}' is already defined.</summary>
        internal static string @SectionAlreadyDefined => GetResourceString("SectionAlreadyDefined");
        /// <summary>Section '{0}' is already defined.</summary>
        internal static string FormatSectionAlreadyDefined(object p0)
           => string.Format(Culture, GetResourceString("SectionAlreadyDefined"), p0);
 
        /// <summary>{0} invocation in '{1}' is invalid. The section '{2}' has already been rendered.</summary>
        internal static string @SectionAlreadyRendered => GetResourceString("SectionAlreadyRendered");
        /// <summary>{0} invocation in '{1}' is invalid. The section '{2}' has already been rendered.</summary>
        internal static string FormatSectionAlreadyRendered(object p0, object p1, object p2)
           => string.Format(Culture, GetResourceString("SectionAlreadyRendered"), p0, p1, p2);
 
        /// <summary>The layout page '{0}' cannot find the section '{1}' in the content page '{2}'.</summary>
        internal static string @SectionNotDefined => GetResourceString("SectionNotDefined");
        /// <summary>The layout page '{0}' cannot find the section '{1}' in the content page '{2}'.</summary>
        internal static string FormatSectionNotDefined(object p0, object p1, object p2)
           => string.Format(Culture, GetResourceString("SectionNotDefined"), p0, p1, p2);
 
        /// <summary>The following sections have been defined but have not been rendered by the page at '{0}': '{1}'. To ignore an unrendered section call {2}("sectionName").</summary>
        internal static string @SectionsNotRendered => GetResourceString("SectionsNotRendered");
        /// <summary>The following sections have been defined but have not been rendered by the page at '{0}': '{1}'. To ignore an unrendered section call {2}("sectionName").</summary>
        internal static string FormatSectionsNotRendered(object p0, object p1, object p2)
           => string.Format(Culture, GetResourceString("SectionsNotRendered"), p0, p1, p2);
 
        /// <summary>'{0} must be set to access '{1}'.</summary>
        internal static string @ViewContextMustBeSet => GetResourceString("ViewContextMustBeSet");
        /// <summary>'{0} must be set to access '{1}'.</summary>
        internal static string FormatViewContextMustBeSet(object p0, object p1)
           => string.Format(Culture, GetResourceString("ViewContextMustBeSet"), p0, p1);
 
        /// <summary>Generated Code</summary>
        internal static string @GeneratedCodeFileName => GetResourceString("GeneratedCodeFileName");
        /// <summary>Unable to perform '{0}' assignment. Tag helper property '{1}.{2}' must not be null.</summary>
        internal static string @RazorPage_InvalidTagHelperIndexerAssignment => GetResourceString("RazorPage_InvalidTagHelperIndexerAssignment");
        /// <summary>Unable to perform '{0}' assignment. Tag helper property '{1}.{2}' must not be null.</summary>
        internal static string FormatRazorPage_InvalidTagHelperIndexerAssignment(object p0, object p1, object p2)
           => string.Format(Culture, GetResourceString("RazorPage_InvalidTagHelperIndexerAssignment"), p0, p1, p2);
 
        /// <summary>Unexpected return value from '{1}.{2}' for URL '{0}'. If the '{1}' service has been overridden, change '{2}' to replace only the '~/' prefix. Otherwise, add the following directive to the Razor page to disable URL resolution relative to the application's ' ...</summary>
        internal static string @CouldNotResolveApplicationRelativeUrl_TagHelper => GetResourceString("CouldNotResolveApplicationRelativeUrl_TagHelper");
        /// <summary>Unexpected return value from '{1}.{2}' for URL '{0}'. If the '{1}' service has been overridden, change '{2}' to replace only the '~/' prefix. Otherwise, add the following directive to the Razor page to disable URL resolution relative to the application's ' ...</summary>
        internal static string FormatCouldNotResolveApplicationRelativeUrl_TagHelper(object p0, object p1, object p2, object p3, object p4, object p5)
           => string.Format(Culture, GetResourceString("CouldNotResolveApplicationRelativeUrl_TagHelper"), p0, p1, p2, p3, p4, p5);
 
        /// <summary>A circular layout reference was detected when rendering '{0}'. The layout page '{1}' has already been rendered.</summary>
        internal static string @LayoutHasCircularReference => GetResourceString("LayoutHasCircularReference");
        /// <summary>A circular layout reference was detected when rendering '{0}'. The layout page '{1}' has already been rendered.</summary>
        internal static string FormatLayoutHasCircularReference(object p0, object p1)
           => string.Format(Culture, GetResourceString("LayoutHasCircularReference"), p0, p1);
 
        /// <summary>One or more compilation references may be missing. If you're seeing this in a published application, set '{0}' to true in your project file to ensure files in the refs directory are published.</summary>
        internal static string @Compilation_MissingReferences => GetResourceString("Compilation_MissingReferences");
        /// <summary>One or more compilation references may be missing. If you're seeing this in a published application, set '{0}' to true in your project file to ensure files in the refs directory are published.</summary>
        internal static string FormatCompilation_MissingReferences(object p0)
           => string.Format(Culture, GetResourceString("Compilation_MissingReferences"), p0);
 
        /// <summary>'{0}' cannot be empty. These locations are required to locate a view for rendering.</summary>
        internal static string @ViewLocationFormatsIsRequired => GetResourceString("ViewLocationFormatsIsRequired");
        /// <summary>'{0}' cannot be empty. These locations are required to locate a view for rendering.</summary>
        internal static string FormatViewLocationFormatsIsRequired(object p0)
           => string.Format(Culture, GetResourceString("ViewLocationFormatsIsRequired"), p0);
 
        /// <summary>Nesting of TagHelper attribute writing scopes is not supported.</summary>
        internal static string @RazorPage_NestingAttributeWritingScopesNotSupported => GetResourceString("RazorPage_NestingAttributeWritingScopesNotSupported");
        /// <summary>'{0}.{1}' must not be empty. At least one '{2}' is required to locate a view for rendering.</summary>
        internal static string @FileProvidersAreRequired => GetResourceString("FileProvidersAreRequired");
        /// <summary>'{0}.{1}' must not be empty. At least one '{2}' is required to locate a view for rendering.</summary>
        internal static string FormatFileProvidersAreRequired(object p0, object p1, object p2)
           => string.Format(Culture, GetResourceString("FileProvidersAreRequired"), p0, p1, p2);
 
        /// <summary>Path must begin with a forward slash '/'.</summary>
        internal static string @RazorProject_PathMustStartWithForwardSlash => GetResourceString("RazorProject_PathMustStartWithForwardSlash");
        /// <summary>The property '{0}' of '{1}' must not be null.</summary>
        internal static string @PropertyMustBeSet => GetResourceString("PropertyMustBeSet");
        /// <summary>The property '{0}' of '{1}' must not be null.</summary>
        internal static string FormatPropertyMustBeSet(object p0, object p1)
           => string.Format(Culture, GetResourceString("PropertyMustBeSet"), p0, p1);
 
        /// <summary>The following precompiled view paths differ only in case, which is not supported:</summary>
        internal static string @RazorViewCompiler_ViewPathsDifferOnlyInCase => GetResourceString("RazorViewCompiler_ViewPathsDifferOnlyInCase");
        /// <summary>The debug type specified in the dependency context could be parsed. The debug type value '{0}' is not supported.</summary>
        internal static string @UnsupportedDebugInformationFormat => GetResourceString("UnsupportedDebugInformationFormat");
        /// <summary>The debug type specified in the dependency context could be parsed. The debug type value '{0}' is not supported.</summary>
        internal static string FormatUnsupportedDebugInformationFormat(object p0)
           => string.Format(Culture, GetResourceString("UnsupportedDebugInformationFormat"), p0);
 
        /// <summary>At least one of the '{0}' or '{1}' values must be non-null.</summary>
        internal static string @CompiledViewDescriptor_NoData => GetResourceString("CompiledViewDescriptor_NoData");
        /// <summary>At least one of the '{0}' or '{1}' values must be non-null.</summary>
        internal static string FormatCompiledViewDescriptor_NoData(object p0, object p1)
           => string.Format(Culture, GetResourceString("CompiledViewDescriptor_NoData"), p0, p1);
 
        /// <summary>Views implementing '{0}' are not supported.</summary>
        internal static string @AsyncDisposableViewsNotSupported => GetResourceString("AsyncDisposableViewsNotSupported");
        /// <summary>Views implementing '{0}' are not supported.</summary>
        internal static string FormatAsyncDisposableViewsNotSupported(object p0)
           => string.Format(Culture, GetResourceString("AsyncDisposableViewsNotSupported"), p0);
 
 
    }
}