// namespace Microsoft.AspNet.Mvc.Core { using System.Globalization; using System.Reflection; using System.Resources; internal static class Resources { private static readonly ResourceManager _resourceManager = new ResourceManager("Microsoft.AspNet.Mvc.Core.Resources", typeof(Resources).GetTypeInfo().Assembly); /// /// The provided anti-forgery token failed a custom data check. /// internal static string AntiForgeryToken_AdditionalDataCheckFailed { get { return GetString("AntiForgeryToken_AdditionalDataCheckFailed"); } } /// /// The provided anti-forgery token failed a custom data check. /// internal static string FormatAntiForgeryToken_AdditionalDataCheckFailed() { return GetString("AntiForgeryToken_AdditionalDataCheckFailed"); } /// /// The provided anti-forgery token was meant for a different claims-based user than the current user. /// internal static string AntiForgeryToken_ClaimUidMismatch { get { return GetString("AntiForgeryToken_ClaimUidMismatch"); } } /// /// The provided anti-forgery token was meant for a different claims-based user than the current user. /// internal static string FormatAntiForgeryToken_ClaimUidMismatch() { return GetString("AntiForgeryToken_ClaimUidMismatch"); } /// /// The required anti-forgery cookie "{0}" is not present. /// internal static string AntiForgeryToken_CookieMissing { get { return GetString("AntiForgeryToken_CookieMissing"); } } /// /// The required anti-forgery cookie "{0}" is not present. /// internal static string FormatAntiForgeryToken_CookieMissing(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("AntiForgeryToken_CookieMissing"), p0); } /// /// The anti-forgery token could not be decrypted. /// internal static string AntiForgeryToken_DeserializationFailed { get { return GetString("AntiForgeryToken_DeserializationFailed"); } } /// /// The anti-forgery token could not be decrypted. /// internal static string FormatAntiForgeryToken_DeserializationFailed() { return GetString("AntiForgeryToken_DeserializationFailed"); } /// /// The required anti-forgery form field "{0}" is not present. /// internal static string AntiForgeryToken_FormFieldMissing { get { return GetString("AntiForgeryToken_FormFieldMissing"); } } /// /// The required anti-forgery form field "{0}" is not present. /// internal static string FormatAntiForgeryToken_FormFieldMissing(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("AntiForgeryToken_FormFieldMissing"), p0); } /// /// The anti-forgery cookie token and form field token do not match. /// internal static string AntiForgeryToken_SecurityTokenMismatch { get { return GetString("AntiForgeryToken_SecurityTokenMismatch"); } } /// /// The anti-forgery cookie token and form field token do not match. /// internal static string FormatAntiForgeryToken_SecurityTokenMismatch() { return GetString("AntiForgeryToken_SecurityTokenMismatch"); } /// /// Validation of the provided anti-forgery token failed. The cookie "{0}" and the form field "{1}" were swapped. /// internal static string AntiForgeryToken_TokensSwapped { get { return GetString("AntiForgeryToken_TokensSwapped"); } } /// /// Validation of the provided anti-forgery token failed. The cookie "{0}" and the form field "{1}" were swapped. /// internal static string FormatAntiForgeryToken_TokensSwapped(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("AntiForgeryToken_TokensSwapped"), p0, p1); } /// /// The provided anti-forgery token was meant for user "{0}", but the current user is "{1}". /// internal static string AntiForgeryToken_UsernameMismatch { get { return GetString("AntiForgeryToken_UsernameMismatch"); } } /// /// The provided anti-forgery token was meant for user "{0}", but the current user is "{1}". /// internal static string FormatAntiForgeryToken_UsernameMismatch(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("AntiForgeryToken_UsernameMismatch"), p0, p1); } /// /// The anti-forgery system has the configuration value AntiForgeryConfig.RequireSsl = true, but the current request is not an SSL request. /// internal static string AntiForgeryWorker_RequireSSL { get { return GetString("AntiForgeryWorker_RequireSSL"); } } /// /// The anti-forgery system has the configuration value AntiForgeryConfig.RequireSsl = true, but the current request is not an SSL request. /// internal static string FormatAntiForgeryWorker_RequireSSL() { return GetString("AntiForgeryWorker_RequireSSL"); } /// /// The method '{0}' on type '{1}' returned an instance of '{2}'. Make sure to call Unwrap on the returned value to avoid unobserved faulted Task. /// internal static string ActionExecutor_WrappedTaskInstance { get { return GetString("ActionExecutor_WrappedTaskInstance"); } } /// /// The method '{0}' on type '{1}' returned an instance of '{2}'. Make sure to call Unwrap on the returned value to avoid unobserved faulted Task. /// internal static string FormatActionExecutor_WrappedTaskInstance(object p0, object p1, object p2) { return string.Format(CultureInfo.CurrentCulture, GetString("ActionExecutor_WrappedTaskInstance"), p0, p1, p2); } /// /// The method '{0}' on type '{1}' returned a Task instance even though it is not an asynchronous method. /// internal static string ActionExecutor_UnexpectedTaskInstance { get { return GetString("ActionExecutor_UnexpectedTaskInstance"); } } /// /// The method '{0}' on type '{1}' returned a Task instance even though it is not an asynchronous method. /// internal static string FormatActionExecutor_UnexpectedTaskInstance(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("ActionExecutor_UnexpectedTaskInstance"), p0, p1); } /// /// A claim of type '{0}' was not present on the provided ClaimsIdentity. /// internal static string ClaimUidExtractor_ClaimNotPresent { get { return GetString("ClaimUidExtractor_ClaimNotPresent"); } } /// /// A claim of type '{0}' was not present on the provided ClaimsIdentity. /// internal static string FormatClaimUidExtractor_ClaimNotPresent(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("ClaimUidExtractor_ClaimNotPresent"), p0); } /// /// The provided identity of type '{0}' is marked IsAuthenticated = true but does not have a value for Name. By default, the anti-forgery system requires that all authenticated identities have a unique Name. If it is not possible to provide a unique Name for this identity, consider extending IAdditionalDataProvider by overriding the DefaultAdditionalDataProvider or a custom type that can provide some form of unique identifier for the current user. /// internal static string TokenValidator_AuthenticatedUserWithoutUsername { get { return GetString("TokenValidator_AuthenticatedUserWithoutUsername"); } } /// /// The provided identity of type '{0}' is marked IsAuthenticated = true but does not have a value for Name. By default, the anti-forgery system requires that all authenticated identities have a unique Name. If it is not possible to provide a unique Name for this identity, consider extending IAdditionalDataProvider by overriding the DefaultAdditionalDataProvider or a custom type that can provide some form of unique identifier for the current user. /// internal static string FormatTokenValidator_AuthenticatedUserWithoutUsername(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("TokenValidator_AuthenticatedUserWithoutUsername"), p0); } /// /// The class ReflectedActionFilterEndPoint only supports ReflectedActionDescriptors. /// internal static string ReflectedActionFilterEndPoint_UnexpectedActionDescriptor { get { return GetString("ReflectedActionFilterEndPoint_UnexpectedActionDescriptor"); } } /// /// The class ReflectedActionFilterEndPoint only supports ReflectedActionDescriptors. /// internal static string FormatReflectedActionFilterEndPoint_UnexpectedActionDescriptor() { return GetString("ReflectedActionFilterEndPoint_UnexpectedActionDescriptor"); } /// /// The view component name '{0}' matched multiple types: {1} /// internal static string ViewComponent_AmbiguousTypeMatch { get { return GetString("ViewComponent_AmbiguousTypeMatch"); } } /// /// The view component name '{0}' matched multiple types: {1} /// internal static string FormatViewComponent_AmbiguousTypeMatch(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("ViewComponent_AmbiguousTypeMatch"), p0, p1); } /// /// The async view component method '{0}' should be declared to return Task<T>. /// internal static string ViewComponent_AsyncMethod_ShouldReturnTask { get { return GetString("ViewComponent_AsyncMethod_ShouldReturnTask"); } } /// /// The async view component method '{0}' should be declared to return Task<T>. /// internal static string FormatViewComponent_AsyncMethod_ShouldReturnTask(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("ViewComponent_AsyncMethod_ShouldReturnTask"), p0); } /// /// A view component must return a non-null value. /// internal static string ViewComponent_MustReturnValue { get { return GetString("ViewComponent_MustReturnValue"); } } /// /// A view component must return a non-null value. /// internal static string FormatViewComponent_MustReturnValue() { return GetString("ViewComponent_MustReturnValue"); } /// /// The view component method '{0}' should be declared to return a value. /// internal static string ViewComponent_SyncMethod_ShouldReturnValue { get { return GetString("ViewComponent_SyncMethod_ShouldReturnValue"); } } /// /// The view component method '{0}' should be declared to return a value. /// internal static string FormatViewComponent_SyncMethod_ShouldReturnValue(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("ViewComponent_SyncMethod_ShouldReturnValue"), p0); } /// /// A view component named '{0}' could not be found. /// internal static string ViewComponent_CannotFindComponent { get { return GetString("ViewComponent_CannotFindComponent"); } } /// /// A view component named '{0}' could not be found. /// internal static string FormatViewComponent_CannotFindComponent(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("ViewComponent_CannotFindComponent"), p0); } /// /// An invoker could not be created for the view component '{0}'. /// internal static string ViewComponent_IViewComponentFactory_ReturnedNull { get { return GetString("ViewComponent_IViewComponentFactory_ReturnedNull"); } } /// /// An invoker could not be created for the view component '{0}'. /// internal static string FormatViewComponent_IViewComponentFactory_ReturnedNull(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("ViewComponent_IViewComponentFactory_ReturnedNull"), p0); } /// /// Could not find an '{0}' method matching the parameters. /// internal static string ViewComponent_CannotFindMethod { get { return GetString("ViewComponent_CannotFindMethod"); } } /// /// Could not find an '{0}' method matching the parameters. /// internal static string FormatViewComponent_CannotFindMethod(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("ViewComponent_CannotFindMethod"), p0); } /// /// Could not find an '{0}' or '{1}' method matching the parameters. /// internal static string ViewComponent_CannotFindMethod_WithFallback { get { return GetString("ViewComponent_CannotFindMethod_WithFallback"); } } /// /// Could not find an '{0}' or '{1}' method matching the parameters. /// internal static string FormatViewComponent_CannotFindMethod_WithFallback(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("ViewComponent_CannotFindMethod_WithFallback"), p0, p1); } /// /// View components only support returning {0}, {1} or {2}. /// internal static string ViewComponent_InvalidReturnValue { get { return GetString("ViewComponent_InvalidReturnValue"); } } /// /// View components only support returning {0}, {1} or {2}. /// internal static string FormatViewComponent_InvalidReturnValue(object p0, object p1, object p2) { return string.Format(CultureInfo.CurrentCulture, GetString("ViewComponent_InvalidReturnValue"), p0, p1, p2); } /// /// Replacing the action context is not supported. /// internal static string ActionContextAccessor_SetValueNotSupported { get { return GetString("ActionContextAccessor_SetValueNotSupported"); } } /// /// Replacing the action context is not supported. /// internal static string FormatActionContextAccessor_SetValueNotSupported() { return GetString("ActionContextAccessor_SetValueNotSupported"); } /// /// An action invoker could not be created for action '{0}'. /// internal static string ActionInvokerFactory_CouldNotCreateInvoker { get { return GetString("ActionInvokerFactory_CouldNotCreateInvoker"); } } /// /// An action invoker could not be created for action '{0}'. /// internal static string FormatActionInvokerFactory_CouldNotCreateInvoker(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("ActionInvokerFactory_CouldNotCreateInvoker"), p0); } /// /// The action descriptor must be of type '{0}'. /// internal static string DefaultControllerFactory_ActionDescriptorMustBeReflected { get { return GetString("DefaultControllerFactory_ActionDescriptorMustBeReflected"); } } /// /// The action descriptor must be of type '{0}'. /// internal static string FormatDefaultControllerFactory_ActionDescriptorMustBeReflected(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("DefaultControllerFactory_ActionDescriptorMustBeReflected"), p0); } /// /// The value cannot be null or empty. /// internal static string ArgumentCannotBeNullOrEmpty { get { return GetString("ArgumentCannotBeNullOrEmpty"); } } /// /// The value cannot be null or empty. /// internal static string FormatArgumentCannotBeNullOrEmpty() { return GetString("ArgumentCannotBeNullOrEmpty"); } /// /// The '{0}' property of '{1}' must not be null. /// internal static string PropertyOfTypeCannotBeNull { get { return GetString("PropertyOfTypeCannotBeNull"); } } /// /// The '{0}' property of '{1}' must not be null. /// internal static string FormatPropertyOfTypeCannotBeNull(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("PropertyOfTypeCannotBeNull"), p0, p1); } /// /// The '{0}' method of type '{1}' cannot return a null value. /// internal static string TypeMethodMustReturnNotNullValue { get { return GetString("TypeMethodMustReturnNotNullValue"); } } /// /// The '{0}' method of type '{1}' cannot return a null value. /// internal static string FormatTypeMethodMustReturnNotNullValue(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("TypeMethodMustReturnNotNullValue"), p0, p1); } /// /// The supplied route values are ambiguous and can select multiple sets of actions. /// internal static string ActionSelector_GetCandidateActionsIsAmbiguous { get { return GetString("ActionSelector_GetCandidateActionsIsAmbiguous"); } } /// /// The supplied route values are ambiguous and can select multiple sets of actions. /// internal static string FormatActionSelector_GetCandidateActionsIsAmbiguous() { return GetString("ActionSelector_GetCandidateActionsIsAmbiguous"); } /// /// Property '{0}' is of type '{1}', but this method requires a value of type '{2}'. /// internal static string ArgumentPropertyUnexpectedType { get { return GetString("ArgumentPropertyUnexpectedType"); } } /// /// Property '{0}' is of type '{1}', but this method requires a value of type '{2}'. /// internal static string FormatArgumentPropertyUnexpectedType(object p0, object p1, object p2) { return string.Format(CultureInfo.CurrentCulture, GetString("ArgumentPropertyUnexpectedType"), p0, p1, p2); } /// /// The partial view '{0}' was not found or no view engine supports the searched locations. The following locations were searched:{1} /// internal static string Common_PartialViewNotFound { get { return GetString("Common_PartialViewNotFound"); } } /// /// The partial view '{0}' was not found or no view engine supports the searched locations. The following locations were searched:{1} /// internal static string FormatCommon_PartialViewNotFound(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("Common_PartialViewNotFound"), p0, p1); } /// /// The value '{0}' is invalid. /// internal static string Common_ValueNotValidForProperty { get { return GetString("Common_ValueNotValidForProperty"); } } /// /// The value '{0}' is invalid. /// internal static string FormatCommon_ValueNotValidForProperty(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("Common_ValueNotValidForProperty"), p0); } /// /// False /// internal static string Common_TriState_False { get { return GetString("Common_TriState_False"); } } /// /// False /// internal static string FormatCommon_TriState_False() { return GetString("Common_TriState_False"); } /// /// Not Set /// internal static string Common_TriState_NotSet { get { return GetString("Common_TriState_NotSet"); } } /// /// Not Set /// internal static string FormatCommon_TriState_NotSet() { return GetString("Common_TriState_NotSet"); } /// /// True /// internal static string Common_TriState_True { get { return GetString("Common_TriState_True"); } } /// /// True /// internal static string FormatCommon_TriState_True() { return GetString("Common_TriState_True"); } /// /// ViewData value must not be null. /// internal static string DynamicViewData_ViewDataNull { get { return GetString("DynamicViewData_ViewDataNull"); } } /// /// ViewData value must not be null. /// internal static string FormatDynamicViewData_ViewDataNull() { return GetString("DynamicViewData_ViewDataNull"); } /// /// The expression compiler was unable to evaluate the indexer expression '{0}' because it references the model parameter '{1}' which is unavailable. /// internal static string ExpressionHelper_InvalidIndexerExpression { get { return GetString("ExpressionHelper_InvalidIndexerExpression"); } } /// /// The expression compiler was unable to evaluate the indexer expression '{0}' because it references the model parameter '{1}' which is unavailable. /// internal static string FormatExpressionHelper_InvalidIndexerExpression(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("ExpressionHelper_InvalidIndexerExpression"), p0, p1); } /// /// The IModelMetadataProvider was unable to provide metadata for expression '{0}'. /// internal static string HtmlHelper_NullModelMetadata { get { return GetString("HtmlHelper_NullModelMetadata"); } } /// /// The IModelMetadataProvider was unable to provide metadata for expression '{0}'. /// internal static string FormatHtmlHelper_NullModelMetadata(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("HtmlHelper_NullModelMetadata"), p0); } /// /// Must call 'Contextualize' method before using this HtmlHelper instance. /// internal static string HtmlHelper_NotContextualized { get { return GetString("HtmlHelper_NotContextualized"); } } /// /// Must call 'Contextualize' method before using this HtmlHelper instance. /// internal static string FormatHtmlHelper_NotContextualized() { return GetString("HtmlHelper_NotContextualized"); } /// /// There is no ViewData item of type '{0}' that has the key '{1}'. /// internal static string HtmlHelper_MissingSelectData { get { return GetString("HtmlHelper_MissingSelectData"); } } /// /// There is no ViewData item of type '{0}' that has the key '{1}'. /// internal static string FormatHtmlHelper_MissingSelectData(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("HtmlHelper_MissingSelectData"), p0, p1); } /// /// The parameter '{0}' must evaluate to an IEnumerable when multiple selection is allowed. /// internal static string HtmlHelper_SelectExpressionNotEnumerable { get { return GetString("HtmlHelper_SelectExpressionNotEnumerable"); } } /// /// The parameter '{0}' must evaluate to an IEnumerable when multiple selection is allowed. /// internal static string FormatHtmlHelper_SelectExpressionNotEnumerable(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("HtmlHelper_SelectExpressionNotEnumerable"), p0); } /// /// The ViewData item that has the key '{0}' is of type '{1}' but must be of type '{2}'. /// internal static string HtmlHelper_WrongSelectDataType { get { return GetString("HtmlHelper_WrongSelectDataType"); } } /// /// The ViewData item that has the key '{0}' is of type '{1}' but must be of type '{2}'. /// internal static string FormatHtmlHelper_WrongSelectDataType(object p0, object p1, object p2) { return string.Format(CultureInfo.CurrentCulture, GetString("HtmlHelper_WrongSelectDataType"), p0, p1, p2); } /// /// The '{0}' template was used with an object of type '{1}', which does not implement '{2}'. /// internal static string Templates_TypeMustImplementIEnumerable { get { return GetString("Templates_TypeMustImplementIEnumerable"); } } /// /// The '{0}' template was used with an object of type '{1}', which does not implement '{2}'. /// internal static string FormatTemplates_TypeMustImplementIEnumerable(object p0, object p1, object p2) { return string.Format(CultureInfo.CurrentCulture, GetString("Templates_TypeMustImplementIEnumerable"), p0, p1, p2); } /// /// Templates can be used only with field access, property access, single-dimension array index, or single-parameter custom indexer expressions. /// internal static string TemplateHelpers_TemplateLimitations { get { return GetString("TemplateHelpers_TemplateLimitations"); } } /// /// Templates can be used only with field access, property access, single-dimension array index, or single-parameter custom indexer expressions. /// internal static string FormatTemplateHelpers_TemplateLimitations() { return GetString("TemplateHelpers_TemplateLimitations"); } /// /// Unable to locate an appropriate template for type {0}. /// internal static string TemplateHelpers_NoTemplate { get { return GetString("TemplateHelpers_NoTemplate"); } } /// /// Unable to locate an appropriate template for type {0}. /// internal static string FormatTemplateHelpers_NoTemplate(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("TemplateHelpers_NoTemplate"), p0); } /// /// The model item passed is null, but this ViewDataDictionary instance requires a non-null model item of type '{0}'. /// internal static string ViewData_ModelCannotBeNull { get { return GetString("ViewData_ModelCannotBeNull"); } } /// /// The model item passed is null, but this ViewDataDictionary instance requires a non-null model item of type '{0}'. /// internal static string FormatViewData_ModelCannotBeNull(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("ViewData_ModelCannotBeNull"), p0); } /// /// The model item passed into the ViewDataDictionary is of type '{0}', but this ViewDataDictionary instance requires a model item of type '{1}'. /// internal static string ViewData_WrongTModelType { get { return GetString("ViewData_WrongTModelType"); } } /// /// The model item passed into the ViewDataDictionary is of type '{0}', but this ViewDataDictionary instance requires a model item of type '{1}'. /// internal static string FormatViewData_WrongTModelType(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("ViewData_WrongTModelType"), p0, p1); } /// /// No route matches the supplied values. /// internal static string NoRoutesMatched { get { return GetString("NoRoutesMatched"); } } /// /// No route matches the supplied values. /// internal static string FormatNoRoutesMatched() { return GetString("NoRoutesMatched"); } /// /// If an {0} provides a result value by setting the {1} property of {2} to a non-null value, then it cannot call the next filter by invoking {3}. /// internal static string AsyncActionFilter_InvalidShortCircuit { get { return GetString("AsyncActionFilter_InvalidShortCircuit"); } } /// /// If an {0} provides a result value by setting the {1} property of {2} to a non-null value, then it cannot call the next filter by invoking {3}. /// internal static string FormatAsyncActionFilter_InvalidShortCircuit(object p0, object p1, object p2, object p3) { return string.Format(CultureInfo.CurrentCulture, GetString("AsyncActionFilter_InvalidShortCircuit"), p0, p1, p2, p3); } /// /// If an {0} cancels execution by setting the {1} property of {2} to 'true', then it cannot call the next filter by invoking {3}. /// internal static string AsyncResultFilter_InvalidShortCircuit { get { return GetString("AsyncResultFilter_InvalidShortCircuit"); } } /// /// If an {0} cancels execution by setting the {1} property of {2} to 'true', then it cannot call the next filter by invoking {3}. /// internal static string FormatAsyncResultFilter_InvalidShortCircuit(object p0, object p1, object p2, object p3) { return string.Format(CultureInfo.CurrentCulture, GetString("AsyncResultFilter_InvalidShortCircuit"), p0, p1, p2, p3); } /// /// The partial view '{0}' was not found. The following locations were searched:{1} /// internal static string ViewEngine_PartialViewNotFound { get { return GetString("ViewEngine_PartialViewNotFound"); } } /// /// The partial view '{0}' was not found. The following locations were searched:{1} /// internal static string FormatViewEngine_PartialViewNotFound(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("ViewEngine_PartialViewNotFound"), p0, p1); } /// /// The view '{0}' was not found. The following locations were searched:{1}. /// internal static string ViewEngine_ViewNotFound { get { return GetString("ViewEngine_ViewNotFound"); } } /// /// The view '{0}' was not found. The following locations were searched:{1}. /// internal static string FormatViewEngine_ViewNotFound(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("ViewEngine_ViewNotFound"), p0, p1); } /// /// Unable to locate an implementation of IAuthorizationService. /// internal static string AuthorizeAttribute_AuthorizationServiceMustBeDefined { get { return GetString("AuthorizeAttribute_AuthorizationServiceMustBeDefined"); } } /// /// Unable to locate an implementation of IAuthorizationService. /// internal static string FormatAuthorizeAttribute_AuthorizationServiceMustBeDefined() { return GetString("AuthorizeAttribute_AuthorizationServiceMustBeDefined"); } /// /// OnAuthorization is not implemented by this filter, use OnAuthorizationAsync instead. /// internal static string AuthorizeAttribute_OnAuthorizationNotImplemented { get { return GetString("AuthorizeAttribute_OnAuthorizationNotImplemented"); } } /// /// OnAuthorization is not implemented by this filter, use OnAuthorizationAsync instead. /// internal static string FormatAuthorizeAttribute_OnAuthorizationNotImplemented() { return GetString("AuthorizeAttribute_OnAuthorizationNotImplemented"); } /// /// The value must be greater than or equal to zero. /// internal static string HtmlHelper_TextAreaParameterOutOfRange { get { return GetString("HtmlHelper_TextAreaParameterOutOfRange"); } } /// /// The value must be greater than or equal to zero. /// internal static string FormatHtmlHelper_TextAreaParameterOutOfRange() { return GetString("HtmlHelper_TextAreaParameterOutOfRange"); } /// /// The type provided to '{0}' must implement '{1}'. /// internal static string FilterFactoryAttribute_TypeMustImplementIFilter { get { return GetString("FilterFactoryAttribute_TypeMustImplementIFilter"); } } /// /// The type provided to '{0}' must implement '{1}'. /// internal static string FormatFilterFactoryAttribute_TypeMustImplementIFilter(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("FilterFactoryAttribute_TypeMustImplementIFilter"), p0, p1); } /// /// Validation parameter names in unobtrusive client validation rules cannot be empty. Client rule type: {0} /// internal static string UnobtrusiveJavascript_ValidationParameterCannotBeEmpty { get { return GetString("UnobtrusiveJavascript_ValidationParameterCannotBeEmpty"); } } /// /// Validation parameter names in unobtrusive client validation rules cannot be empty. Client rule type: {0} /// internal static string FormatUnobtrusiveJavascript_ValidationParameterCannotBeEmpty(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("UnobtrusiveJavascript_ValidationParameterCannotBeEmpty"), p0); } /// /// Validation parameter names in unobtrusive client validation rules must start with a lowercase letter and consist of only lowercase letters or digits. Validation parameter name: {0}, client rule type: {1} /// internal static string UnobtrusiveJavascript_ValidationParameterMustBeLegal { get { return GetString("UnobtrusiveJavascript_ValidationParameterMustBeLegal"); } } /// /// Validation parameter names in unobtrusive client validation rules must start with a lowercase letter and consist of only lowercase letters or digits. Validation parameter name: {0}, client rule type: {1} /// internal static string FormatUnobtrusiveJavascript_ValidationParameterMustBeLegal(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("UnobtrusiveJavascript_ValidationParameterMustBeLegal"), p0, p1); } /// /// Validation type names in unobtrusive client validation rules cannot be empty. Client rule type: {0} /// internal static string UnobtrusiveJavascript_ValidationTypeCannotBeEmpty { get { return GetString("UnobtrusiveJavascript_ValidationTypeCannotBeEmpty"); } } /// /// Validation type names in unobtrusive client validation rules cannot be empty. Client rule type: {0} /// internal static string FormatUnobtrusiveJavascript_ValidationTypeCannotBeEmpty(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("UnobtrusiveJavascript_ValidationTypeCannotBeEmpty"), p0); } /// /// Validation type names in unobtrusive client validation rules must consist of only lowercase letters. Invalid name: "{0}", client rule type: {1} /// internal static string UnobtrusiveJavascript_ValidationTypeMustBeLegal { get { return GetString("UnobtrusiveJavascript_ValidationTypeMustBeLegal"); } } /// /// Validation type names in unobtrusive client validation rules must consist of only lowercase letters. Invalid name: "{0}", client rule type: {1} /// internal static string FormatUnobtrusiveJavascript_ValidationTypeMustBeLegal(object p0, object p1) { return string.Format(CultureInfo.CurrentCulture, GetString("UnobtrusiveJavascript_ValidationTypeMustBeLegal"), p0, p1); } /// /// Validation type names in unobtrusive client validation rules must be unique. The following validation type was seen more than once: {0} /// internal static string UnobtrusiveJavascript_ValidationTypeMustBeUnique { get { return GetString("UnobtrusiveJavascript_ValidationTypeMustBeUnique"); } } /// /// Validation type names in unobtrusive client validation rules must be unique. The following validation type was seen more than once: {0} /// internal static string FormatUnobtrusiveJavascript_ValidationTypeMustBeUnique(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("UnobtrusiveJavascript_ValidationTypeMustBeUnique"), p0); } /// /// Cannot return null from an action method with a return type of '{0}'. /// internal static string ActionResult_ActionReturnValueCannotBeNull { get { return GetString("ActionResult_ActionReturnValueCannotBeNull"); } } /// /// Cannot return null from an action method with a return type of '{0}'. /// internal static string FormatActionResult_ActionReturnValueCannotBeNull(object p0) { return string.Format(CultureInfo.CurrentCulture, GetString("ActionResult_ActionReturnValueCannotBeNull"), 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; } } }