719 lines
27 KiB
C#
719 lines
27 KiB
C#
// <auto-generated />
|
|
namespace Microsoft.AspNet.Mvc.ModelBinding
|
|
{
|
|
using System.Globalization;
|
|
using System.Reflection;
|
|
using System.Resources;
|
|
|
|
internal static class Resources
|
|
{
|
|
private static readonly ResourceManager _resourceManager
|
|
= new ResourceManager("Microsoft.AspNet.Mvc.ModelBinding.Resources", typeof(Resources).GetTypeInfo().Assembly);
|
|
|
|
/// <summary>
|
|
/// More than one parameter and/or property is bound to the HTTP request's content.
|
|
/// </summary>
|
|
internal static string MultipleBodyParametersOrPropertiesAreNotAllowed
|
|
{
|
|
get { return GetString("MultipleBodyParametersOrPropertiesAreNotAllowed"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// More than one parameter and/or property is bound to the HTTP request's content.
|
|
/// </summary>
|
|
internal static string FormatMultipleBodyParametersOrPropertiesAreNotAllowed()
|
|
{
|
|
return GetString("MultipleBodyParametersOrPropertiesAreNotAllowed");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Value cannot be null or empty.
|
|
/// </summary>
|
|
internal static string ArgumentCannotBeNullOrEmpty
|
|
{
|
|
get { return GetString("ArgumentCannotBeNullOrEmpty"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Value cannot be null or empty.
|
|
/// </summary>
|
|
internal static string FormatArgumentCannotBeNullOrEmpty()
|
|
{
|
|
return GetString("ArgumentCannotBeNullOrEmpty");
|
|
}
|
|
|
|
/// <summary>
|
|
/// A value is required.
|
|
/// </summary>
|
|
internal static string KeyValuePair_BothKeyAndValueMustBePresent
|
|
{
|
|
get { return GetString("KeyValuePair_BothKeyAndValueMustBePresent"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// A value is required.
|
|
/// </summary>
|
|
internal static string FormatKeyValuePair_BothKeyAndValueMustBePresent()
|
|
{
|
|
return GetString("KeyValuePair_BothKeyAndValueMustBePresent");
|
|
}
|
|
|
|
/// <summary>
|
|
/// The property {0}.{1} could not be found.
|
|
/// </summary>
|
|
internal static string Common_PropertyNotFound
|
|
{
|
|
get { return GetString("Common_PropertyNotFound"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The property {0}.{1} could not be found.
|
|
/// </summary>
|
|
internal static string FormatCommon_PropertyNotFound(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("Common_PropertyNotFound"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The parameter '{0}' could not be found.
|
|
/// </summary>
|
|
internal static string Common_ParameterNotFound
|
|
{
|
|
get { return GetString("Common_ParameterNotFound"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The parameter '{0}' could not be found.
|
|
/// </summary>
|
|
internal static string FormatCommon_ParameterNotFound(object p0)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("Common_ParameterNotFound"), p0);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The type '{0}' must have a public constructor which accepts a single parameter of type '{1}'.
|
|
/// </summary>
|
|
internal static string DataAnnotationsModelValidatorProvider_ConstructorRequirements
|
|
{
|
|
get { return GetString("DataAnnotationsModelValidatorProvider_ConstructorRequirements"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The type '{0}' must have a public constructor which accepts a single parameter of type '{1}'.
|
|
/// </summary>
|
|
internal static string FormatDataAnnotationsModelValidatorProvider_ConstructorRequirements(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("DataAnnotationsModelValidatorProvider_ConstructorRequirements"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The key is invalid JQuery syntax because it is missing a closing bracket.
|
|
/// </summary>
|
|
internal static string JQuerySyntaxMissingClosingBracket
|
|
{
|
|
get { return GetString("JQuerySyntaxMissingClosingBracket"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The key is invalid JQuery syntax because it is missing a closing bracket.
|
|
/// </summary>
|
|
internal static string FormatJQuerySyntaxMissingClosingBracket()
|
|
{
|
|
return GetString("JQuerySyntaxMissingClosingBracket");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Property '{0}' on type '{1}' is invalid. Value-typed properties marked as [Required] must also be marked with [DataMember(IsRequired=true)] to be recognized as required. Consider attributing the declaring type with [DataContract] and the property with [DataMember(IsRequired=true)].
|
|
/// </summary>
|
|
internal static string MissingDataMemberIsRequired
|
|
{
|
|
get { return GetString("MissingDataMemberIsRequired"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Property '{0}' on type '{1}' is invalid. Value-typed properties marked as [Required] must also be marked with [DataMember(IsRequired=true)] to be recognized as required. Consider attributing the declaring type with [DataContract] and the property with [DataMember(IsRequired=true)].
|
|
/// </summary>
|
|
internal static string FormatMissingDataMemberIsRequired(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("MissingDataMemberIsRequired"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The '{0}' property is required.
|
|
/// </summary>
|
|
internal static string MissingRequiredMember
|
|
{
|
|
get { return GetString("MissingRequiredMember"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The '{0}' property is required.
|
|
/// </summary>
|
|
internal static string FormatMissingRequiredMember(object p0)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("MissingRequiredMember"), p0);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The value '{0}' is not valid for {1}.
|
|
/// </summary>
|
|
internal static string ModelBinderConfig_ValueInvalid
|
|
{
|
|
get { return GetString("ModelBinderConfig_ValueInvalid"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The value '{0}' is not valid for {1}.
|
|
/// </summary>
|
|
internal static string FormatModelBinderConfig_ValueInvalid(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("ModelBinderConfig_ValueInvalid"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// A value is required.
|
|
/// </summary>
|
|
internal static string ModelBinderConfig_ValueRequired
|
|
{
|
|
get { return GetString("ModelBinderConfig_ValueRequired"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// A value is required.
|
|
/// </summary>
|
|
internal static string FormatModelBinderConfig_ValueRequired()
|
|
{
|
|
return GetString("ModelBinderConfig_ValueRequired");
|
|
}
|
|
|
|
/// <summary>
|
|
/// The binding context has a null Model, but this binder requires a non-null model of type '{0}'.
|
|
/// </summary>
|
|
internal static string ModelBinderUtil_ModelCannotBeNull
|
|
{
|
|
get { return GetString("ModelBinderUtil_ModelCannotBeNull"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The binding context has a null Model, but this binder requires a non-null model of type '{0}'.
|
|
/// </summary>
|
|
internal static string FormatModelBinderUtil_ModelCannotBeNull(object p0)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("ModelBinderUtil_ModelCannotBeNull"), p0);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The binding context has a Model of type '{0}', but this binder can only operate on models of type '{1}'.
|
|
/// </summary>
|
|
internal static string ModelBinderUtil_ModelInstanceIsWrong
|
|
{
|
|
get { return GetString("ModelBinderUtil_ModelInstanceIsWrong"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The binding context has a Model of type '{0}', but this binder can only operate on models of type '{1}'.
|
|
/// </summary>
|
|
internal static string FormatModelBinderUtil_ModelInstanceIsWrong(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("ModelBinderUtil_ModelInstanceIsWrong"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The binding context cannot have a null ModelMetadata.
|
|
/// </summary>
|
|
internal static string ModelBinderUtil_ModelMetadataCannotBeNull
|
|
{
|
|
get { return GetString("ModelBinderUtil_ModelMetadataCannotBeNull"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The binding context cannot have a null ModelMetadata.
|
|
/// </summary>
|
|
internal static string FormatModelBinderUtil_ModelMetadataCannotBeNull()
|
|
{
|
|
return GetString("ModelBinderUtil_ModelMetadataCannotBeNull");
|
|
}
|
|
|
|
/// <summary>
|
|
/// The binding context has a ModelType of '{0}', but this binder can only operate on models of type '{1}'.
|
|
/// </summary>
|
|
internal static string ModelBinderUtil_ModelTypeIsWrong
|
|
{
|
|
get { return GetString("ModelBinderUtil_ModelTypeIsWrong"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The binding context has a ModelType of '{0}', but this binder can only operate on models of type '{1}'.
|
|
/// </summary>
|
|
internal static string FormatModelBinderUtil_ModelTypeIsWrong(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("ModelBinderUtil_ModelTypeIsWrong"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The ModelMetadata property must be set before accessing this property.
|
|
/// </summary>
|
|
internal static string ModelBindingContext_ModelMetadataMustBeSet
|
|
{
|
|
get { return GetString("ModelBindingContext_ModelMetadataMustBeSet"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The ModelMetadata property must be set before accessing this property.
|
|
/// </summary>
|
|
internal static string FormatModelBindingContext_ModelMetadataMustBeSet()
|
|
{
|
|
return GetString("ModelBindingContext_ModelMetadataMustBeSet");
|
|
}
|
|
|
|
/// <summary>
|
|
/// The type '{0}' does not implement the interface '{1}'.
|
|
/// </summary>
|
|
internal static string PropertyBindingPredicateProvider_WrongType
|
|
{
|
|
get { return GetString("PropertyBindingPredicateProvider_WrongType"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The type '{0}' does not implement the interface '{1}'.
|
|
/// </summary>
|
|
internal static string FormatPropertyBindingPredicateProvider_WrongType(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("PropertyBindingPredicateProvider_WrongType"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The model object inside the metadata claimed to be compatible with '{0}', but was actually '{1}'.
|
|
/// </summary>
|
|
internal static string ValidatableObjectAdapter_IncompatibleType
|
|
{
|
|
get { return GetString("ValidatableObjectAdapter_IncompatibleType"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The model object inside the metadata claimed to be compatible with '{0}', but was actually '{1}'.
|
|
/// </summary>
|
|
internal static string FormatValidatableObjectAdapter_IncompatibleType(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("ValidatableObjectAdapter_IncompatibleType"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Field '{0}' on type '{1}' is attributed with one or more validation attributes. Validation attributes on fields are not supported. Consider using a public property for validation instead.
|
|
/// </summary>
|
|
internal static string ValidationAttributeOnField
|
|
{
|
|
get { return GetString("ValidationAttributeOnField"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Field '{0}' on type '{1}' is attributed with one or more validation attributes. Validation attributes on fields are not supported. Consider using a public property for validation instead.
|
|
/// </summary>
|
|
internal static string FormatValidationAttributeOnField(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("ValidationAttributeOnField"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Non-public property '{0}' on type '{1}' is attributed with one or more validation attributes. Validation attributes on non-public properties are not supported. Consider using a public property for validation instead.
|
|
/// </summary>
|
|
internal static string ValidationAttributeOnNonPublicProperty
|
|
{
|
|
get { return GetString("ValidationAttributeOnNonPublicProperty"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Non-public property '{0}' on type '{1}' is attributed with one or more validation attributes. Validation attributes on non-public properties are not supported. Consider using a public property for validation instead.
|
|
/// </summary>
|
|
internal static string FormatValidationAttributeOnNonPublicProperty(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("ValidationAttributeOnNonPublicProperty"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// A field previously marked invalid should not be marked valid.
|
|
/// </summary>
|
|
internal static string Validation_InvalidFieldCannotBeReset
|
|
{
|
|
get { return GetString("Validation_InvalidFieldCannotBeReset"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// A field previously marked invalid should not be marked valid.
|
|
/// </summary>
|
|
internal static string FormatValidation_InvalidFieldCannotBeReset()
|
|
{
|
|
return GetString("Validation_InvalidFieldCannotBeReset");
|
|
}
|
|
|
|
/// <summary>
|
|
/// A field previously marked invalid should not be marked skipped.
|
|
/// </summary>
|
|
internal static string Validation_InvalidFieldCannotBeReset_ToSkipped
|
|
{
|
|
get { return GetString("Validation_InvalidFieldCannotBeReset_ToSkipped"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// A field previously marked invalid should not be marked skipped.
|
|
/// </summary>
|
|
internal static string FormatValidation_InvalidFieldCannotBeReset_ToSkipped()
|
|
{
|
|
return GetString("Validation_InvalidFieldCannotBeReset_ToSkipped");
|
|
}
|
|
|
|
/// <summary>
|
|
/// A value is required but was not present in the request.
|
|
/// </summary>
|
|
internal static string Validation_ValueNotFound
|
|
{
|
|
get { return GetString("Validation_ValueNotFound"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// A value is required but was not present in the request.
|
|
/// </summary>
|
|
internal static string FormatValidation_ValueNotFound()
|
|
{
|
|
return GetString("Validation_ValueNotFound");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Cannot convert value '{0}' to enum type '{1}'.
|
|
/// </summary>
|
|
internal static string ValueProviderResult_CannotConvertEnum
|
|
{
|
|
get { return GetString("ValueProviderResult_CannotConvertEnum"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Cannot convert value '{0}' to enum type '{1}'.
|
|
/// </summary>
|
|
internal static string FormatValueProviderResult_CannotConvertEnum(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("ValueProviderResult_CannotConvertEnum"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The parameter conversion from type '{0}' to type '{1}' failed because no type converter can convert between these types.
|
|
/// </summary>
|
|
internal static string ValueProviderResult_NoConverterExists
|
|
{
|
|
get { return GetString("ValueProviderResult_NoConverterExists"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The parameter conversion from type '{0}' to type '{1}' failed because no type converter can convert between these types.
|
|
/// </summary>
|
|
internal static string FormatValueProviderResult_NoConverterExists(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("ValueProviderResult_NoConverterExists"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// {0} has a DisplayColumn attribute for {1}, but property {1} does not exist.
|
|
/// </summary>
|
|
internal static string DataAnnotationsModelMetadataProvider_UnknownProperty
|
|
{
|
|
get { return GetString("DataAnnotationsModelMetadataProvider_UnknownProperty"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// {0} has a DisplayColumn attribute for {1}, but property {1} does not exist.
|
|
/// </summary>
|
|
internal static string FormatDataAnnotationsModelMetadataProvider_UnknownProperty(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("DataAnnotationsModelMetadataProvider_UnknownProperty"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// {0} has a DisplayColumn attribute for {1}, but property {1} does not have a public 'get' method.
|
|
/// </summary>
|
|
internal static string DataAnnotationsModelMetadataProvider_UnreadableProperty
|
|
{
|
|
get { return GetString("DataAnnotationsModelMetadataProvider_UnreadableProperty"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// {0} has a DisplayColumn attribute for {1}, but property {1} does not have a public 'get' method.
|
|
/// </summary>
|
|
internal static string FormatDataAnnotationsModelMetadataProvider_UnreadableProperty(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("DataAnnotationsModelMetadataProvider_UnreadableProperty"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The maximum number of allowed model errors has been reached.
|
|
/// </summary>
|
|
internal static string ModelStateDictionary_MaxModelStateErrors
|
|
{
|
|
get { return GetString("ModelStateDictionary_MaxModelStateErrors"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The maximum number of allowed model errors has been reached.
|
|
/// </summary>
|
|
internal static string FormatModelStateDictionary_MaxModelStateErrors()
|
|
{
|
|
return GetString("ModelStateDictionary_MaxModelStateErrors");
|
|
}
|
|
|
|
/// <summary>
|
|
/// The type '{0}' must implement either '{1}' or '{2}' to be used as a model binder.
|
|
/// </summary>
|
|
internal static string BinderType_MustBeIModelBinderOrIModelBinderProvider
|
|
{
|
|
get { return GetString("BinderType_MustBeIModelBinderOrIModelBinderProvider"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The type '{0}' must implement either '{1}' or '{2}' to be used as a model binder.
|
|
/// </summary>
|
|
internal static string FormatBinderType_MustBeIModelBinderOrIModelBinderProvider(object p0, object p1, object p2)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("BinderType_MustBeIModelBinderOrIModelBinderProvider"), p0, p1, p2);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The value '{0}' is not valid for {1}.
|
|
/// </summary>
|
|
internal static string ModelBinderUtil_ValueInvalid
|
|
{
|
|
get { return GetString("ModelBinderUtil_ValueInvalid"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The value '{0}' is not valid for {1}.
|
|
/// </summary>
|
|
internal static string FormatModelBinderUtil_ValueInvalid(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("ModelBinderUtil_ValueInvalid"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The supplied value is invalid for {0}.
|
|
/// </summary>
|
|
internal static string ModelBinderUtil_ValueInvalidGeneric
|
|
{
|
|
get { return GetString("ModelBinderUtil_ValueInvalidGeneric"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The supplied value is invalid for {0}.
|
|
/// </summary>
|
|
internal static string FormatModelBinderUtil_ValueInvalidGeneric(object p0)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("ModelBinderUtil_ValueInvalidGeneric"), p0);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Body
|
|
/// </summary>
|
|
internal static string BindingSource_Body
|
|
{
|
|
get { return GetString("BindingSource_Body"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Body
|
|
/// </summary>
|
|
internal static string FormatBindingSource_Body()
|
|
{
|
|
return GetString("BindingSource_Body");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Custom
|
|
/// </summary>
|
|
internal static string BindingSource_Custom
|
|
{
|
|
get { return GetString("BindingSource_Custom"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Custom
|
|
/// </summary>
|
|
internal static string FormatBindingSource_Custom()
|
|
{
|
|
return GetString("BindingSource_Custom");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Form
|
|
/// </summary>
|
|
internal static string BindingSource_Form
|
|
{
|
|
get { return GetString("BindingSource_Form"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Form
|
|
/// </summary>
|
|
internal static string FormatBindingSource_Form()
|
|
{
|
|
return GetString("BindingSource_Form");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Header
|
|
/// </summary>
|
|
internal static string BindingSource_Header
|
|
{
|
|
get { return GetString("BindingSource_Header"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Header
|
|
/// </summary>
|
|
internal static string FormatBindingSource_Header()
|
|
{
|
|
return GetString("BindingSource_Header");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Services
|
|
/// </summary>
|
|
internal static string BindingSource_Services
|
|
{
|
|
get { return GetString("BindingSource_Services"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Services
|
|
/// </summary>
|
|
internal static string FormatBindingSource_Services()
|
|
{
|
|
return GetString("BindingSource_Services");
|
|
}
|
|
|
|
/// <summary>
|
|
/// ModelBinding
|
|
/// </summary>
|
|
internal static string BindingSource_ModelBinding
|
|
{
|
|
get { return GetString("BindingSource_ModelBinding"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// ModelBinding
|
|
/// </summary>
|
|
internal static string FormatBindingSource_ModelBinding()
|
|
{
|
|
return GetString("BindingSource_ModelBinding");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Path
|
|
/// </summary>
|
|
internal static string BindingSource_Path
|
|
{
|
|
get { return GetString("BindingSource_Path"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Path
|
|
/// </summary>
|
|
internal static string FormatBindingSource_Path()
|
|
{
|
|
return GetString("BindingSource_Path");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Query
|
|
/// </summary>
|
|
internal static string BindingSource_Query
|
|
{
|
|
get { return GetString("BindingSource_Query"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Query
|
|
/// </summary>
|
|
internal static string FormatBindingSource_Query()
|
|
{
|
|
return GetString("BindingSource_Query");
|
|
}
|
|
|
|
/// <summary>
|
|
/// The provided binding source '{0}' is a composite. '{1}' requires that the source must represent a single type of input.
|
|
/// </summary>
|
|
internal static string BindingSource_CannotBeComposite
|
|
{
|
|
get { return GetString("BindingSource_CannotBeComposite"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The provided binding source '{0}' is a composite. '{1}' requires that the source must represent a single type of input.
|
|
/// </summary>
|
|
internal static string FormatBindingSource_CannotBeComposite(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("BindingSource_CannotBeComposite"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The provided binding source '{0}' is not a request-based binding source. '{1}' requires that the source must represent data from an HTTP request.
|
|
/// </summary>
|
|
internal static string BindingSource_MustBeFromRequest
|
|
{
|
|
get { return GetString("BindingSource_MustBeFromRequest"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The provided binding source '{0}' is not a request-based binding source. '{1}' requires that the source must represent data from an HTTP request.
|
|
/// </summary>
|
|
internal static string FormatBindingSource_MustBeFromRequest(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("BindingSource_MustBeFromRequest"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The provided binding source '{0}' is a greedy data source. '{1}' does not support greedy data sources.
|
|
/// </summary>
|
|
internal static string BindingSource_CannotBeGreedy
|
|
{
|
|
get { return GetString("BindingSource_CannotBeGreedy"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The provided binding source '{0}' is a greedy data source. '{1}' does not support greedy data sources.
|
|
/// </summary>
|
|
internal static string FormatBindingSource_CannotBeGreedy(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("BindingSource_CannotBeGreedy"), p0, p1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The provided binding source '{0}' is not a greedy data source. '{1}' only supports greedy data sources.
|
|
/// </summary>
|
|
internal static string BindingSource_MustBeGreedy
|
|
{
|
|
get { return GetString("BindingSource_MustBeGreedy"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The provided binding source '{0}' is not a greedy data source. '{1}' only supports greedy data sources.
|
|
/// </summary>
|
|
internal static string FormatBindingSource_MustBeGreedy(object p0, object p1)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("BindingSource_MustBeGreedy"), p0, p1);
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|