// <auto-generated>
using System.Reflection;
namespace FxResources.System.Text.Json
{
internal static class SR { }
}
namespace System
{
internal static partial class SR
{
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(FxResources.System.Text.Json.SR)));
/// <summary>The maximum configured depth of {0} has been exceeded. Cannot read next JSON array.</summary>
internal static string @ArrayDepthTooLarge => GetResourceString("ArrayDepthTooLarge");
/// <summary>The JSON writer needs to be flushed before getting the current state. There are {0} bytes that have not been committed to the output.</summary>
internal static string @CallFlushToAvoidDataLoss => GetResourceString("CallFlushToAvoidDataLoss");
/// <summary>Cannot read incomplete UTF-16 JSON text as string with missing low surrogate.</summary>
internal static string @CannotReadIncompleteUTF16 => GetResourceString("CannotReadIncompleteUTF16");
/// <summary>Cannot read invalid UTF-16 JSON text as string. Invalid surrogate value: '{0}'.</summary>
internal static string @CannotReadInvalidUTF16 => GetResourceString("CannotReadInvalidUTF16");
/// <summary>Cannot write the start of an object/array after a single JSON value or outside of an existing closed object/array. Current token type is '{0}'.</summary>
internal static string @CannotStartObjectArrayAfterPrimitiveOrClose => GetResourceString("CannotStartObjectArrayAfterPrimitiveOrClose");
/// <summary>Cannot write the start of an object or array without a property name. Current token type is '{0}'.</summary>
internal static string @CannotStartObjectArrayWithoutProperty => GetResourceString("CannotStartObjectArrayWithoutProperty");
/// <summary>Cannot transcode invalid UTF-8 JSON text to UTF-16 string.</summary>
internal static string @CannotTranscodeInvalidUtf8 => GetResourceString("CannotTranscodeInvalidUtf8");
/// <summary>Cannot decode JSON text that is not encoded as valid Base64 to bytes.</summary>
internal static string @CannotDecodeInvalidBase64 => GetResourceString("CannotDecodeInvalidBase64");
/// <summary>Cannot transcode invalid UTF-16 string to UTF-8 JSON text.</summary>
internal static string @CannotTranscodeInvalidUtf16 => GetResourceString("CannotTranscodeInvalidUtf16");
/// <summary>Cannot encode invalid UTF-16 text as JSON. Invalid surrogate value: '{0}'.</summary>
internal static string @CannotEncodeInvalidUTF16 => GetResourceString("CannotEncodeInvalidUTF16");
/// <summary>Cannot encode invalid UTF-8 text as JSON. Invalid input: '{0}'.</summary>
internal static string @CannotEncodeInvalidUTF8 => GetResourceString("CannotEncodeInvalidUTF8");
/// <summary>Cannot write a JSON property within an array or as the first JSON token. Current token type is '{0}'.</summary>
internal static string @CannotWritePropertyWithinArray => GetResourceString("CannotWritePropertyWithinArray");
/// <summary>Cannot write a JSON property name following another property name. A JSON value is missing.</summary>
internal static string @CannotWritePropertyAfterProperty => GetResourceString("CannotWritePropertyAfterProperty");
/// <summary>Cannot write a JSON value after a single JSON value or outside of an existing closed object/array. Current token type is '{0}'.</summary>
internal static string @CannotWriteValueAfterPrimitiveOrClose => GetResourceString("CannotWriteValueAfterPrimitiveOrClose");
/// <summary>Cannot write a JSON value within an object without a property name. Current token type is '{0}'.</summary>
internal static string @CannotWriteValueWithinObject => GetResourceString("CannotWriteValueWithinObject");
/// <summary>CurrentDepth ({0}) is equal to or larger than the maximum allowed depth of {1}. Cannot write the next JSON object or array.</summary>
internal static string @DepthTooLarge => GetResourceString("DepthTooLarge");
/// <summary>Destination is too short.</summary>
internal static string @DestinationTooShort => GetResourceString("DestinationTooShort");
/// <summary>Writing an empty JSON payload (excluding comments) is invalid.</summary>
internal static string @EmptyJsonIsInvalid => GetResourceString("EmptyJsonIsInvalid");
/// <summary>Expected end of comment, but instead reached end of data.</summary>
internal static string @EndOfCommentNotFound => GetResourceString("EndOfCommentNotFound");
/// <summary>Expected end of string, but instead reached end of data.</summary>
internal static string @EndOfStringNotFound => GetResourceString("EndOfStringNotFound");
/// <summary>'{0}' is invalid after a single JSON value. Expected end of data.</summary>
internal static string @ExpectedEndAfterSingleJson => GetResourceString("ExpectedEndAfterSingleJson");
/// <summary>'{0}' is an invalid end of a number. Expected a delimiter.</summary>
internal static string @ExpectedEndOfDigitNotFound => GetResourceString("ExpectedEndOfDigitNotFound");
/// <summary>'{0}' is an invalid JSON literal. Expected the literal 'false'.</summary>
internal static string @ExpectedFalse => GetResourceString("ExpectedFalse");
/// <summary>The input does not contain any JSON tokens. Expected the input to start with a valid JSON token, when isFinalBlock is true.</summary>
internal static string @ExpectedJsonTokens => GetResourceString("ExpectedJsonTokens");
/// <summary>The input does not contain any complete JSON tokens. Expected the input to have at least one valid, complete, JSON token.</summary>
internal static string @ExpectedOneCompleteToken => GetResourceString("ExpectedOneCompleteToken");
/// <summary>'{0}' is an invalid end of a number. Expected 'E' or 'e'.</summary>
internal static string @ExpectedNextDigitEValueNotFound => GetResourceString("ExpectedNextDigitEValueNotFound");
/// <summary>'{0}' is an invalid JSON literal. Expected the literal 'null'.</summary>
internal static string @ExpectedNull => GetResourceString("ExpectedNull");
/// <summary>'{0}' is invalid after a property name. Expected a ':'.</summary>
internal static string @ExpectedSeparatorAfterPropertyNameNotFound => GetResourceString("ExpectedSeparatorAfterPropertyNameNotFound");
/// <summary>'{0}' is an invalid start of a property name. Expected a '"'.</summary>
internal static string @ExpectedStartOfPropertyNotFound => GetResourceString("ExpectedStartOfPropertyNotFound");
/// <summary>Expected start of a property name or value, but instead reached end of data.</summary>
internal static string @ExpectedStartOfPropertyOrValueNotFound => GetResourceString("ExpectedStartOfPropertyOrValueNotFound");
/// <summary>'{0}' is an invalid start of a value.</summary>
internal static string @ExpectedStartOfValueNotFound => GetResourceString("ExpectedStartOfValueNotFound");
/// <summary>'{0}' is an invalid JSON literal. Expected the literal 'true'.</summary>
internal static string @ExpectedTrue => GetResourceString("ExpectedTrue");
/// <summary>Expected a value, but instead reached end of data.</summary>
internal static string @ExpectedValueAfterPropertyNameNotFound => GetResourceString("ExpectedValueAfterPropertyNameNotFound");
/// <summary>The 'IBufferWriter' could not provide an output buffer that is large enough to continue writing.</summary>
internal static string @FailedToGetLargerSpan => GetResourceString("FailedToGetLargerSpan");
/// <summary>'{0}' is invalid after a value. Expected either ',', '}}', or ']'.</summary>
internal static string @FoundInvalidCharacter => GetResourceString("FoundInvalidCharacter");
/// <summary>Cannot get the value of a token type '{0}' as a {1}.</summary>
internal static string @InvalidCast => GetResourceString("InvalidCast");
/// <summary>'{0}' is an invalid escapable character within a JSON string. The string should be correctly escaped.</summary>
internal static string @InvalidCharacterAfterEscapeWithinString => GetResourceString("InvalidCharacterAfterEscapeWithinString");
/// <summary>'{0}' is invalid within a JSON string. The string should be correctly escaped.</summary>
internal static string @InvalidCharacterWithinString => GetResourceString("InvalidCharacterWithinString");
/// <summary>Enum type '{0}' uses unsupported identifier '{1}'. It must not be null nor contain leading or trailing whitespace. Flags enums must additionally not be empty nor contain commas.</summary>
internal static string @UnsupportedEnumIdentifier => GetResourceString("UnsupportedEnumIdentifier");
/// <summary>'{0}' is an invalid token type for the end of the JSON payload. Expected either 'EndArray' or 'EndObject'.</summary>
internal static string @InvalidEndOfJsonNonPrimitive => GetResourceString("InvalidEndOfJsonNonPrimitive");
/// <summary>'{0}' is not a hex digit following '\u' within a JSON string. The string should be correctly escaped.</summary>
internal static string @InvalidHexCharacterWithinString => GetResourceString("InvalidHexCharacterWithinString");
/// <summary>Comments cannot be stored in a JsonDocument, only the Skip and Disallow comment handling modes are supported.</summary>
internal static string @JsonDocumentDoesNotSupportComments => GetResourceString("JsonDocumentDoesNotSupportComments");
/// <summary>The requested operation requires an element of type '{0}', but the target element has type '{1}'.</summary>
internal static string @JsonElementHasWrongType => GetResourceString("JsonElementHasWrongType");
/// <summary>Insufficient stack to continue executing 'JsonElement.DeepEquals'. This can happen either because the 'JsonElement' values are too deep or 'DeepEquals' is being called too deep in the stack.</summary>
internal static string @JsonElementDeepEqualsInsufficientExecutionStack => GetResourceString("JsonElementDeepEqualsInsufficientExecutionStack");
/// <summary>The exponent value in the specified JSON number is too large.</summary>
internal static string @JsonNumberExponentTooLarge => GetResourceString("JsonNumberExponentTooLarge");
/// <summary>Cannot add callbacks to the 'Modifiers' property after the resolver has been used for the first time.</summary>
internal static string @DefaultTypeInfoResolverImmutable => GetResourceString("DefaultTypeInfoResolverImmutable");
/// <summary>The specified IJsonTypeInfoResolver chain cannot be modified.</summary>
internal static string @TypeInfoResolverChainImmutable => GetResourceString("TypeInfoResolverChainImmutable");
/// <summary>This JsonTypeInfo instance is marked read-only or has already been used in serialization or deserialization.</summary>
internal static string @TypeInfoImmutable => GetResourceString("TypeInfoImmutable");
/// <summary>Max depth must be positive.</summary>
internal static string @MaxDepthMustBePositive => GetResourceString("MaxDepthMustBePositive");
/// <summary>The JsonCommentHandling enum must be set to one of the supported values.</summary>
internal static string @CommentHandlingMustBeValid => GetResourceString("CommentHandlingMustBeValid");
/// <summary>'{0}' is invalid without a matching open.</summary>
internal static string @MismatchedObjectArray => GetResourceString("MismatchedObjectArray");
/// <summary>'{0}' is invalid following a property name.</summary>
internal static string @CannotWriteEndAfterProperty => GetResourceString("CannotWriteEndAfterProperty");
/// <summary>The maximum configured depth of {0} has been exceeded. Cannot read next JSON object.</summary>
internal static string @ObjectDepthTooLarge => GetResourceString("ObjectDepthTooLarge");
/// <summary>The JSON property name of length {0} is too large and not supported.</summary>
internal static string @PropertyNameTooLarge => GetResourceString("PropertyNameTooLarge");
/// <summary>'{0}' is invalid within a number, immediately after a decimal point ('.'). Expected a digit ('0'-'9').</summary>
internal static string @RequiredDigitNotFoundAfterDecimal => GetResourceString("RequiredDigitNotFoundAfterDecimal");
/// <summary>'{0}' is invalid within a number, immediately after a sign character ('+' or '-'). Expected a digit ('0'-'9').</summary>
internal static string @RequiredDigitNotFoundAfterSign => GetResourceString("RequiredDigitNotFoundAfterSign");
/// <summary>Expected a digit ('0'-'9'), but instead reached end of data.</summary>
internal static string @RequiredDigitNotFoundEndOfData => GetResourceString("RequiredDigitNotFoundEndOfData");
/// <summary>.NET number values such as positive and negative infinity cannot be written as valid JSON. To make it work when using 'JsonSerializer', consider specifying 'JsonNumberHandling.AllowNamedFloatingPointLiterals' (see https://learn.microsoft.com/dotnet/api/sys ...</summary>
internal static string @SpecialNumberValuesNotSupported => GetResourceString("SpecialNumberValuesNotSupported");
/// <summary>The JSON value of length {0} is too large and not supported.</summary>
internal static string @ValueTooLarge => GetResourceString("ValueTooLarge");
/// <summary>Expected depth to be zero at the end of the JSON payload. There is an open JSON object or array that should be closed.</summary>
internal static string @ZeroDepthAtEnd => GetResourceString("ZeroDepthAtEnd");
/// <summary>The JSON value could not be converted to {0}.</summary>
internal static string @DeserializeUnableToConvertValue => GetResourceString("DeserializeUnableToConvertValue");
/// <summary>The specified type {0} must derive from the specific value's type {1}.</summary>
internal static string @DeserializeWrongType => GetResourceString("DeserializeWrongType");
/// <summary>The value must be greater than zero.</summary>
internal static string @SerializationInvalidBufferSize => GetResourceString("SerializationInvalidBufferSize");
/// <summary>Cannot advance past the end of the buffer, which has a size of {0}.</summary>
internal static string @BufferWriterAdvancedTooFar => GetResourceString("BufferWriterAdvancedTooFar");
/// <summary>Cannot compare the value of a token type '{0}' to text.</summary>
internal static string @InvalidComparison => GetResourceString("InvalidComparison");
/// <summary>The JSON value is not in a supported {0} format.</summary>
internal static string @UnsupportedFormat => GetResourceString("UnsupportedFormat");
/// <summary>'{0}' is an invalid start of a property name or value, after a comment.</summary>
internal static string @ExpectedStartOfPropertyOrValueAfterComment => GetResourceString("ExpectedStartOfPropertyOrValueAfterComment");
/// <summary>The JSON array contains a trailing comma at the end which is not supported in this mode. Change the reader options.</summary>
internal static string @TrailingCommaNotAllowedBeforeArrayEnd => GetResourceString("TrailingCommaNotAllowedBeforeArrayEnd");
/// <summary>The JSON object contains a trailing comma at the end which is not supported in this mode. Change the reader options.</summary>
internal static string @TrailingCommaNotAllowedBeforeObjectEnd => GetResourceString("TrailingCommaNotAllowedBeforeObjectEnd");
/// <summary>This JsonSerializerOptions instance is read-only or has already been used in serialization or deserialization.</summary>
internal static string @SerializerOptionsReadOnly => GetResourceString("SerializerOptionsReadOnly");
/// <summary>Cannot insert the values of 'TypeInfoResolver' or 'TypeInfoResolverChain' to 'TypeInfoResolverChain'.</summary>
internal static string @SerializerOptions_InvalidChainedResolver => GetResourceString("SerializerOptions_InvalidChainedResolver");
/// <summary>Stream is not writable.</summary>
internal static string @StreamNotWritable => GetResourceString("StreamNotWritable");
/// <summary>Cannot write a comment value which contains the end of comment delimiter.</summary>
internal static string @CannotWriteCommentWithEmbeddedDelimiter => GetResourceString("CannotWriteCommentWithEmbeddedDelimiter");
/// <summary>The JSON property name for '{0}.{1}' collides with another property.</summary>
internal static string @SerializerPropertyNameConflict => GetResourceString("SerializerPropertyNameConflict");
/// <summary>The JSON property name for '{0}.{1}' cannot be null.</summary>
internal static string @SerializerPropertyNameNull => GetResourceString("SerializerPropertyNameNull");
/// <summary>The extension data property '{0}.{1}' is invalid. It must implement 'IDictionary<string, JsonElement>' or 'IDictionary<string, object>', or be 'JsonObject'.</summary>
internal static string @SerializationDataExtensionPropertyInvalid => GetResourceString("SerializationDataExtensionPropertyInvalid");
/// <summary>The property type '{0}' does not support null values and therefore cannot be marked as nullable.</summary>
internal static string @PropertyTypeNotNullable => GetResourceString("PropertyTypeNotNullable");
/// <summary>The type '{0}' cannot have more than one member that has the attribute '{1}'.</summary>
internal static string @SerializationDuplicateTypeAttribute => GetResourceString("SerializationDuplicateTypeAttribute");
/// <summary>The type '{0}' is marked 'JsonUnmappedMemberHandling.Disallow' which conflicts with extension data property '{1}'.</summary>
internal static string @ExtensionDataConflictsWithUnmappedMemberHandling => GetResourceString("ExtensionDataConflictsWithUnmappedMemberHandling");
/// <summary>The type '{0}' is not supported.</summary>
internal static string @SerializationNotSupportedType => GetResourceString("SerializationNotSupportedType");
/// <summary>The type '{0}' can only be serialized using async serialization methods.</summary>
internal static string @TypeRequiresAsyncSerialization => GetResourceString("TypeRequiresAsyncSerialization");
/// <summary>'{0}' is invalid after '/' at the beginning of the comment. Expected either '/' or '*'.</summary>
internal static string @InvalidCharacterAtStartOfComment => GetResourceString("InvalidCharacterAtStartOfComment");
/// <summary>Unexpected end of data while reading a comment.</summary>
internal static string @UnexpectedEndOfDataWhileReadingComment => GetResourceString("UnexpectedEndOfDataWhileReadingComment");
/// <summary>Cannot skip tokens on partial JSON. Either get the whole payload and create a Utf8JsonReader instance where isFinalBlock is true or call TrySkip.</summary>
internal static string @CannotSkip => GetResourceString("CannotSkip");
/// <summary>There is not enough data to read through the entire JSON array or object.</summary>
internal static string @NotEnoughData => GetResourceString("NotEnoughData");
/// <summary>Found invalid line or paragraph separator character while reading a comment.</summary>
internal static string @UnexpectedEndOfLineSeparator => GetResourceString("UnexpectedEndOfLineSeparator");
/// <summary>Comments cannot be stored when deserializing objects, only the Skip and Disallow comment handling modes are supported.</summary>
internal static string @JsonSerializerDoesNotSupportComments => GetResourceString("JsonSerializerDoesNotSupportComments");
/// <summary>Deserialization of types without a parameterless constructor, a singular parameterized constructor, or a parameterized constructor annotated with '{0}' is not supported. Type '{1}'.</summary>
internal static string @DeserializeNoConstructor => GetResourceString("DeserializeNoConstructor");
/// <summary>Deserialization of interface or abstract types is not supported. Type '{0}'.</summary>
internal static string @DeserializeInterfaceOrAbstractType => GetResourceString("DeserializeInterfaceOrAbstractType");
/// <summary>The JSON payload for polymorphic interface or abstract type '{0}' must specify a type discriminator.</summary>
internal static string @DeserializationMustSpecifyTypeDiscriminator => GetResourceString("DeserializationMustSpecifyTypeDiscriminator");
/// <summary>The converter specified on '{0}' is not compatible with the type '{1}'.</summary>
internal static string @SerializationConverterOnAttributeNotCompatible => GetResourceString("SerializationConverterOnAttributeNotCompatible");
/// <summary>The open generic converter type '{1}' specified on '{0}' cannot be instantiated because the target type is not a generic type with a matching number of type parameters.</summary>
internal static string @SerializationConverterOnAttributeOpenGenericNotCompatible => GetResourceString("SerializationConverterOnAttributeOpenGenericNotCompatible");
/// <summary>The converter specified on '{0}' does not derive from JsonConverter or have a public parameterless constructor.</summary>
internal static string @SerializationConverterOnAttributeInvalid => GetResourceString("SerializationConverterOnAttributeInvalid");
/// <summary>The converter '{0}' read too much or not enough.</summary>
internal static string @SerializationConverterRead => GetResourceString("SerializationConverterRead");
/// <summary>The converter '{0}' is not compatible with the type '{1}'.</summary>
internal static string @SerializationConverterNotCompatible => GetResourceString("SerializationConverterNotCompatible");
/// <summary>The IJsonTypeInfoResolver returned an incompatible JsonTypeInfo instance of type '{0}', expected type '{1}'.</summary>
internal static string @ResolverTypeNotCompatible => GetResourceString("ResolverTypeNotCompatible");
/// <summary>The IJsonTypeInfoResolver returned a JsonTypeInfo instance whose JsonSerializerOptions setting does not match the provided argument.</summary>
internal static string @ResolverTypeInfoOptionsNotCompatible => GetResourceString("ResolverTypeInfoOptionsNotCompatible");
/// <summary>The converter '{0}' wrote too much or not enough.</summary>
internal static string @SerializationConverterWrite => GetResourceString("SerializationConverterWrite");
/// <summary>The naming policy '{0}' cannot return null.</summary>
internal static string @NamingPolicyReturnNull => GetResourceString("NamingPolicyReturnNull");
/// <summary>The attribute '{0}' cannot exist more than once on '{1}'.</summary>
internal static string @SerializationDuplicateAttribute => GetResourceString("SerializationDuplicateAttribute");
/// <summary>The object or value could not be serialized.</summary>
internal static string @SerializeUnableToSerialize => GetResourceString("SerializeUnableToSerialize");
/// <summary>A possible object cycle was detected. This can either be due to a cycle or if the object depth is larger than the maximum allowed depth of {0}. Consider using ReferenceHandler.Preserve on JsonSerializerOptions to support cycles.</summary>
internal static string @SerializerCycleDetected => GetResourceString("SerializerCycleDetected");
/// <summary>Invalid leading zero before '{0}'.</summary>
internal static string @InvalidLeadingZeroInNumber => GetResourceString("InvalidLeadingZeroInNumber");
/// <summary>Cannot parse a JSON object containing metadata properties like '$id' or '$type' into an array or immutable collection type. Type '{0}'.</summary>
internal static string @MetadataCannotParsePreservedObjectToImmutable => GetResourceString("MetadataCannotParsePreservedObjectToImmutable");
/// <summary>The value of the '$id' metadata property '{0}' conflicts with an existing identifier.</summary>
internal static string @MetadataDuplicateIdFound => GetResourceString("MetadataDuplicateIdFound");
/// <summary>The metadata property '$id' cannot be used together with '$ref' metadata properties.</summary>
internal static string @MetadataIdCannotBeCombinedWithRef => GetResourceString("MetadataIdCannotBeCombinedWithRef");
/// <summary>Invalid reference to value type '{0}'.</summary>
internal static string @MetadataInvalidReferenceToValueType => GetResourceString("MetadataInvalidReferenceToValueType");
/// <summary>The '$values' metadata property must be a JSON array. Current token type is '{0}'.</summary>
internal static string @MetadataInvalidTokenAfterValues => GetResourceString("MetadataInvalidTokenAfterValues");
/// <summary>Deserialization failed for one of these reasons:
/// 1. {0}
/// 2. {1}</summary>
internal static string @MetadataPreservedArrayFailed => GetResourceString("MetadataPreservedArrayFailed");
/// <summary>A JSON object containing metadata for a nested array includes a non-metadata property '{0}'.</summary>
internal static string @MetadataInvalidPropertyInArrayMetadata => GetResourceString("MetadataInvalidPropertyInArrayMetadata");
/// <summary>A '$values' metadata property must always be preceded by other metadata properties, such as '$id' or '$type'.</summary>
internal static string @MetadataStandaloneValuesProperty => GetResourceString("MetadataStandaloneValuesProperty");
/// <summary>A JSON object that contains a '$ref' metadata property must not contain any other properties.</summary>
internal static string @MetadataReferenceCannotContainOtherProperties => GetResourceString("MetadataReferenceCannotContainOtherProperties");
/// <summary>Reference '{0}' was not found.</summary>
internal static string @MetadataReferenceNotFound => GetResourceString("MetadataReferenceNotFound");
/// <summary>The '$id', '$ref' or '$type' metadata properties must be JSON strings. Current token type is '{0}'.</summary>
internal static string @MetadataValueWasNotString => GetResourceString("MetadataValueWasNotString");
/// <summary>Properties that start with '$' are not allowed in types that support metadata. Either replace the character or disable reference preservation and polymorphic deserialization.</summary>
internal static string @MetadataInvalidPropertyWithLeadingDollarSign => GetResourceString("MetadataInvalidPropertyWithLeadingDollarSign");
/// <summary>The metadata property is either not supported by the type or is not the first property in the deserialized JSON object.</summary>
internal static string @MetadataUnexpectedProperty => GetResourceString("MetadataUnexpectedProperty");
/// <summary>The JSON property '{0}' could not be mapped to any .NET member contained in type '{1}'.</summary>
internal static string @UnmappedJsonProperty => GetResourceString("UnmappedJsonProperty");
/// <summary>Deserialized object contains a duplicate '{0}' metadata property.</summary>
internal static string @DuplicateMetadataProperty => GetResourceString("DuplicateMetadataProperty");
/// <summary>Members '{0}' and '{1}' on type '{2}' cannot both bind with parameter '{3}' in the deserialization constructor.</summary>
internal static string @MultipleMembersBindWithConstructorParameter => GetResourceString("MultipleMembersBindWithConstructorParameter");
/// <summary>Each parameter in the deserialization constructor on type '{0}' must bind to an object property or field on deserialization. Each parameter name and type must match with a property or field on the object. Fields are only considered when 'JsonSerializerOpti ...</summary>
internal static string @ConstructorParamIncompleteBinding => GetResourceString("ConstructorParamIncompleteBinding");
/// <summary>Reference metadata is not supported when deserializing constructor parameters. See type '{0}'.</summary>
internal static string @ObjectWithParameterizedCtorRefMetadataNotSupported => GetResourceString("ObjectWithParameterizedCtorRefMetadataNotSupported");
/// <summary>The converter '{0}' cannot return a null value.</summary>
internal static string @SerializerConverterFactoryReturnsNull => GetResourceString("SerializerConverterFactoryReturnsNull");
/// <summary>The unsupported member type is located on type '{0}'.</summary>
internal static string @SerializationNotSupportedParentType => GetResourceString("SerializationNotSupportedParentType");
/// <summary>The extension data property '{0}' on type '{1}' cannot bind with a parameter in the deserialization constructor.</summary>
internal static string @ExtensionDataCannotBindToCtorParam => GetResourceString("ExtensionDataCannotBindToCtorParam");
/// <summary>Cannot allocate a buffer of size {0}.</summary>
internal static string @BufferMaximumSizeExceeded => GetResourceString("BufferMaximumSizeExceeded");
/// <summary>The type '{0}' is invalid for serialization or deserialization because it is a pointer type, is a ref struct, or contains generic parameters that have not been replaced by specific types.</summary>
internal static string @CannotSerializeInvalidType => GetResourceString("CannotSerializeInvalidType");
/// <summary>Serialization and deserialization of '{0}' instances is not supported.</summary>
internal static string @SerializeTypeInstanceNotSupported => GetResourceString("SerializeTypeInstanceNotSupported");
/// <summary>The property '{0}' on type '{1}' which is annotated with 'JsonIncludeAttribute' is not accesible by the source generator.</summary>
internal static string @JsonIncludeOnInaccessibleProperty => GetResourceString("JsonIncludeOnInaccessibleProperty");
/// <summary>The type '{0}' of property '{1}' on type '{2}' is invalid for serialization or deserialization because it is a pointer type, is a ref struct, or contains generic parameters that have not been replaced by specific types.</summary>
internal static string @CannotSerializeInvalidMember => GetResourceString("CannotSerializeInvalidMember");
/// <summary>The collection type '{0}' is abstract, an interface, or is read only, and could not be instantiated and populated.</summary>
internal static string @CannotPopulateCollection => GetResourceString("CannotPopulateCollection");
/// <summary>The deserialization constructor for type '{0}' contains parameters with null names. This might happen because the parameter names have been trimmed by ILLink. Consider using the source generated serializer instead.</summary>
internal static string @ConstructorContainsNullParameterNames => GetResourceString("ConstructorContainsNullParameterNames");
/// <summary>'IgnoreNullValues' and 'DefaultIgnoreCondition' cannot both be set to non-default values.</summary>
internal static string @DefaultIgnoreConditionAlreadySpecified => GetResourceString("DefaultIgnoreConditionAlreadySpecified");
/// <summary>The value cannot be 'JsonIgnoreCondition.Always'.</summary>
internal static string @DefaultIgnoreConditionInvalid => GetResourceString("DefaultIgnoreConditionInvalid");
/// <summary>The type '{0}' is not a supported dictionary key using converter of type '{1}'. Custom converters can add support for dictionary key serialization by overriding the 'ReadAsPropertyName' and 'WriteAsPropertyName' methods.</summary>
internal static string @DictionaryKeyTypeNotSupported => GetResourceString("DictionaryKeyTypeNotSupported");
/// <summary>The ignore condition 'JsonIgnoreCondition.WhenWritingNull' is not valid on value-type member '{0}' on type '{1}'. Consider using 'JsonIgnoreCondition.WhenWritingDefault'.</summary>
internal static string @IgnoreConditionOnValueTypeInvalid => GetResourceString("IgnoreConditionOnValueTypeInvalid");
/// <summary>'JsonNumberHandlingAttribute' is only valid on a number or a collection of numbers when applied to a property or field. See member '{0}' on type '{1}'.</summary>
internal static string @NumberHandlingOnPropertyInvalid => GetResourceString("NumberHandlingOnPropertyInvalid");
/// <summary>The converter '{0}' handles type '{1}' but is being asked to convert type '{2}'. Either create a separate converter for type '{2}' or change the converter's 'CanConvert' method to only return 'true' for a single type.</summary>
internal static string @ConverterCanConvertMultipleTypes => GetResourceString("ConverterCanConvertMultipleTypes");
/// <summary>The object with reference id '{0}' of type '{1}' cannot be assigned to the type '{2}'.</summary>
internal static string @MetadataReferenceOfTypeCannotBeAssignedToType => GetResourceString("MetadataReferenceOfTypeCannotBeAssignedToType");
/// <summary>Unable to cast object of type '{0}' to type '{1}'.</summary>
internal static string @DeserializeUnableToAssignValue => GetResourceString("DeserializeUnableToAssignValue");
/// <summary>Unable to assign 'null' to the property or field of type '{0}'.</summary>
internal static string @DeserializeUnableToAssignNull => GetResourceString("DeserializeUnableToAssignNull");
/// <summary>The converter '{0}' cannot return an instance of JsonConverterFactory.</summary>
internal static string @SerializerConverterFactoryReturnsJsonConverterFactory => GetResourceString("SerializerConverterFactoryReturnsJsonConverterFactory");
/// <summary>The type '{0}' is not supported by the current JsonConverterFactory.</summary>
internal static string @SerializerConverterFactoryInvalidArgument => GetResourceString("SerializerConverterFactoryInvalidArgument");
/// <summary>The element must be of type '{0}'</summary>
internal static string @NodeElementWrongType => GetResourceString("NodeElementWrongType");
/// <summary>The element cannot be an object or array.</summary>
internal static string @NodeElementCannotBeObjectOrArray => GetResourceString("NodeElementCannotBeObjectOrArray");
/// <summary>The node already has a parent.</summary>
internal static string @NodeAlreadyHasParent => GetResourceString("NodeAlreadyHasParent");
/// <summary>A node cycle was detected.</summary>
internal static string @NodeCycleDetected => GetResourceString("NodeCycleDetected");
/// <summary>A value of type '{0}' cannot be converted to a '{1}'.</summary>
internal static string @NodeUnableToConvert => GetResourceString("NodeUnableToConvert");
/// <summary>An element of type '{0}' cannot be converted to a '{1}'.</summary>
internal static string @NodeUnableToConvertElement => GetResourceString("NodeUnableToConvertElement");
/// <summary>A JsonNode cannot be used as a value.</summary>
internal static string @NodeValueNotAllowed => GetResourceString("NodeValueNotAllowed");
/// <summary>The node must be of type '{0}'.</summary>
internal static string @NodeWrongType => GetResourceString("NodeWrongType");
/// <summary>The node must have a parent node of type '{0}'.</summary>
internal static string @NodeParentWrongType => GetResourceString("NodeParentWrongType");
/// <summary>An item with the same key has already been added. Key: {0}</summary>
internal static string @NodeDuplicateKey => GetResourceString("NodeDuplicateKey");
/// <summary>JsonSerializerOptions instances cannot be modified once encapsulated by a JsonSerializerContext. Such encapsulation can happen either when calling 'JsonSerializerOptions.AddContext' or when passing the options instance to a JsonSerializerContext constructo ...</summary>
internal static string @SerializerContextOptionsReadOnly => GetResourceString("SerializerContextOptionsReadOnly");
/// <summary>The generic type of the converter for property '{0}.{1}' must match with the specified converter type '{2}'. The converter must not be 'null'.</summary>
internal static string @ConverterForPropertyMustBeValid => GetResourceString("ConverterForPropertyMustBeValid");
/// <summary>JsonTypeInfo metadata for type '{0}' was not provided by TypeInfoResolver of type '{1}'. If using source generation, ensure that all root types passed to the serializer have been annotated with 'JsonSerializableAttribute', along with any types that might b ...</summary>
internal static string @NoMetadataForType => GetResourceString("NoMetadataForType");
/// <summary>Ambiguous matches when resolving JsonTypeInfo metadata for type '{0}': '{1}', '{2}'. Consider either explicitly providing metadata for the type or removing one of its interface implementations.</summary>
internal static string @AmbiguousMetadataForType => GetResourceString("AmbiguousMetadataForType");
/// <summary>Collection is read-only.</summary>
internal static string @CollectionIsReadOnly => GetResourceString("CollectionIsReadOnly");
/// <summary>Number was less than 0.</summary>
internal static string @ArrayIndexNegative => GetResourceString("ArrayIndexNegative");
/// <summary>Destination array was not long enough.</summary>
internal static string @ArrayTooSmall => GetResourceString("ArrayTooSmall");
/// <summary>A custom converter for JsonObject is not allowed on an extension property.</summary>
internal static string @NodeJsonObjectCustomConverterNotAllowedOnExtensionProperty => GetResourceString("NodeJsonObjectCustomConverterNotAllowedOnExtensionProperty");
/// <summary>TypeInfoResolver '{0}' did not provide property metadata for type '{1}'.</summary>
internal static string @NoMetadataForTypeProperties => GetResourceString("NoMetadataForTypeProperties");
/// <summary>A 'field' member cannot be 'virtual'. See arguments for the '{0}' and '{1}' parameters.</summary>
internal static string @FieldCannotBeVirtual => GetResourceString("FieldCannotBeVirtual");
/// <summary>Could not locate required member '{0}' from FSharp.Core. This might happen because your application has enabled member-level trimming.</summary>
internal static string @MissingFSharpCoreMember => GetResourceString("MissingFSharpCoreMember");
/// <summary>The F# discriminated union type '{0}' has duplicate case discriminator name '{1}'.</summary>
internal static string @FSharpUnionDuplicateCaseName => GetResourceString("FSharpUnionDuplicateCaseName");
/// <summary>The F# discriminated union type '{0}' case '{1}' has duplicate field name '{2}'.</summary>
internal static string @FSharpUnionDuplicateFieldName => GetResourceString("FSharpUnionDuplicateFieldName");
/// <summary>The F# discriminated union type '{0}' has a case field name '{1}' that conflicts with the type discriminator property name '{2}'.</summary>
internal static string @FSharpUnionFieldConflictsWithDiscriminator => GetResourceString("FSharpUnionFieldConflictsWithDiscriminator");
/// <summary>Required type discriminator property '{0}' not found when deserializing F# discriminated union type '{1}'.</summary>
internal static string @FSharpUnionMissingDiscriminatorProperty => GetResourceString("FSharpUnionMissingDiscriminatorProperty");
/// <summary>The converter for polymorphic type '{0}' does not support metadata writes or reads.</summary>
internal static string @Polymorphism_BaseConverterDoesNotSupportMetadata => GetResourceString("Polymorphism_BaseConverterDoesNotSupportMetadata");
/// <summary>The converter for derived type '{0}' does not support metadata writes or reads.</summary>
internal static string @Polymorphism_DerivedConverterDoesNotSupportMetadata => GetResourceString("Polymorphism_DerivedConverterDoesNotSupportMetadata");
/// <summary>Specified type '{0}' does not support polymorphism. Polymorphic types cannot be structs, sealed types or System.Object.</summary>
internal static string @Polymorphism_TypeDoesNotSupportPolymorphism => GetResourceString("Polymorphism_TypeDoesNotSupportPolymorphism");
/// <summary>Specified type '{0}' is not a supported derived type for the polymorphic type '{1}'. Derived types must not be open generic type definitions, must be assignable to the base type and cannot be abstract classes or interfaces unless 'JsonUnknownDerivedTypeHan ...</summary>
internal static string @Polymorphism_DerivedTypeIsNotSupported => GetResourceString("Polymorphism_DerivedTypeIsNotSupported");
/// <summary>The polymorphic type '{0}' has already specified derived type '{1}'.</summary>
internal static string @Polymorphism_DerivedTypeIsAlreadySpecified => GetResourceString("Polymorphism_DerivedTypeIsAlreadySpecified");
/// <summary>The open generic derived type '{0}' could not be resolved for the polymorphic base type '{1}': {2}.</summary>
internal static string @Polymorphism_OpenGenericDerivedTypeCouldNotBeResolved => GetResourceString("Polymorphism_OpenGenericDerivedTypeCouldNotBeResolved");
/// <summary>the derived type is not assignable to the base type</summary>
internal static string @Polymorphism_OpenGeneric_Reason_NotAssignable => GetResourceString("Polymorphism_OpenGeneric_Reason_NotAssignable");
/// <summary>the base type's arguments do not match the derived type's base specification</summary>
internal static string @Polymorphism_OpenGeneric_Reason_UnificationFailed => GetResourceString("Polymorphism_OpenGeneric_Reason_UnificationFailed");
/// <summary>the type parameter '{0}' of the derived type is not bound by the base type's arguments</summary>
internal static string @Polymorphism_OpenGeneric_Reason_UnboundParameter => GetResourceString("Polymorphism_OpenGeneric_Reason_UnboundParameter");
/// <summary>the derived type matches the base type through multiple ancestors</summary>
internal static string @Polymorphism_OpenGeneric_Reason_AmbiguousMatch => GetResourceString("Polymorphism_OpenGeneric_Reason_AmbiguousMatch");
/// <summary>a type argument violates a generic constraint on the derived type</summary>
internal static string @Polymorphism_OpenGeneric_Reason_ConstraintViolation => GetResourceString("Polymorphism_OpenGeneric_Reason_ConstraintViolation");
/// <summary>The polymorphic type '{0}' has already specified a type discriminator '{1}'.</summary>
internal static string @Polymorphism_TypeDicriminatorIdIsAlreadySpecified => GetResourceString("Polymorphism_TypeDicriminatorIdIsAlreadySpecified");
/// <summary>The inferred derived type '{0}' is less accessible than the polymorphic base type '{1}'. Inferred derived types must be at least as accessible as the base type.</summary>
internal static string @Polymorphism_InferredDerivedTypeIsNotAccessible => GetResourceString("Polymorphism_InferredDerivedTypeIsNotAccessible");
/// <summary>The type '{0}' enables JsonPolymorphicAttribute.InferClosedTypePolymorphism but is not a closed type, so no derived types can be inferred. Declare the type 'closed' or register its derived types using JsonDerivedTypeAttribute.</summary>
internal static string @Polymorphism_InferClosedTypePolymorphismOnNonClosedType => GetResourceString("Polymorphism_InferClosedTypePolymorphismOnNonClosedType");
/// <summary>The metadata property names '$id', '$ref', and '$values' are reserved and cannot be used as custom type discriminator property names.</summary>
internal static string @Polymorphism_InvalidCustomTypeDiscriminatorPropertyName => GetResourceString("Polymorphism_InvalidCustomTypeDiscriminatorPropertyName");
/// <summary>The type '{0}' contains property '{1}' that conflicts with an existing metadata property name. Consider either renaming it or ignoring it with JsonIgnoreAttribute.</summary>
internal static string @Polymorphism_PropertyConflictsWithMetadataPropertyName => GetResourceString("Polymorphism_PropertyConflictsWithMetadataPropertyName");
/// <summary>Polymorphic configuration for type '{0}' should specify at least one derived type.</summary>
internal static string @Polymorphism_ConfigurationDoesNotSpecifyDerivedTypes => GetResourceString("Polymorphism_ConfigurationDoesNotSpecifyDerivedTypes");
/// <summary>Read unrecognized type discriminator id '{0}'.</summary>
internal static string @Polymorphism_UnrecognizedTypeDiscriminator => GetResourceString("Polymorphism_UnrecognizedTypeDiscriminator");
/// <summary>Runtime type '{0}' is not supported by polymorphic type '{1}'.</summary>
internal static string @Polymorphism_RuntimeTypeNotSupported => GetResourceString("Polymorphism_RuntimeTypeNotSupported");
/// <summary>Runtime type '{0}' has a diamond ambiguity between derived types '{1}' and '{2}' of polymorphic type '{3}'. Consider either removing one of the derived types or removing the 'JsonUnknownDerivedTypeHandling.FallBackToNearestAncestor' setting.</summary>
internal static string @Polymorphism_RuntimeTypeDiamondAmbiguity => GetResourceString("Polymorphism_RuntimeTypeDiamondAmbiguity");
/// <summary>Invalid JsonTypeInfo operation for JsonTypeInfoKind '{0}'.</summary>
internal static string @InvalidJsonTypeInfoOperationForKind => GetResourceString("InvalidJsonTypeInfoOperationForKind");
/// <summary>The type '{0}' does not support setting OnDeserializing callbacks.</summary>
internal static string @OnDeserializingCallbacksNotSupported => GetResourceString("OnDeserializingCallbacksNotSupported");
/// <summary>The converter for type '{0}' does not support setting 'CreateObject' delegates.</summary>
internal static string @CreateObjectConverterNotCompatible => GetResourceString("CreateObjectConverterNotCompatible");
/// <summary>JsonPropertyInfo with name '{0}' for type '{1}' is already bound to different JsonTypeInfo.</summary>
internal static string @JsonPropertyInfoBoundToDifferentParent => GetResourceString("JsonPropertyInfoBoundToDifferentParent");
/// <summary>JsonSerializerOptions instance must specify a TypeInfoResolver setting before being marked as read-only.</summary>
internal static string @JsonSerializerOptionsNoTypeInfoResolverSpecified => GetResourceString("JsonSerializerOptionsNoTypeInfoResolverSpecified");
/// <summary>Reflection-based serialization has been disabled for this application. Either use the source generator APIs or explicitly configure the 'JsonSerializerOptions.TypeInfoResolver' property.</summary>
internal static string @JsonSerializerIsReflectionDisabled => GetResourceString("JsonSerializerIsReflectionDisabled");
/// <summary>Parameter already associated with a different JsonTypeInfo instance.</summary>
internal static string @JsonPolymorphismOptionsAssociatedWithDifferentJsonTypeInfo => GetResourceString("JsonPolymorphismOptionsAssociatedWithDifferentJsonTypeInfo");
/// <summary>JsonPropertyInfo '{0}' defined in type '{1}' is marked required but does not specify a setter.</summary>
internal static string @JsonPropertyRequiredAndNotDeserializable => GetResourceString("JsonPropertyRequiredAndNotDeserializable");
/// <summary>JsonPropertyInfo '{0}' defined in type '{1}' is marked both as required and as an extension data property. This combination is not supported.</summary>
internal static string @JsonPropertyRequiredAndExtensionData => GetResourceString("JsonPropertyRequiredAndExtensionData");
/// <summary>JSON deserialization for type '{0}' was missing required properties including: {1}.</summary>
internal static string @JsonRequiredPropertiesMissing => GetResourceString("JsonRequiredPropertiesMissing");
/// <summary>Property '{0}' on type '{1}' is marked with JsonObjectCreationHandling.Populate but it doesn't support populating. This can be either because the property type is immutable or it could use a custom converter.</summary>
internal static string @ObjectCreationHandlingPopulateNotSupportedByConverter => GetResourceString("ObjectCreationHandlingPopulateNotSupportedByConverter");
/// <summary>Property '{0}' on type '{1}' is marked with JsonObjectCreationHandling.Populate but it doesn't have a getter.</summary>
internal static string @ObjectCreationHandlingPropertyMustHaveAGetter => GetResourceString("ObjectCreationHandlingPropertyMustHaveAGetter");
/// <summary>Property '{0}' on type '{1}' is marked with JsonObjectCreationHandling.Populate but is a value type that doesn't have a setter.</summary>
internal static string @ObjectCreationHandlingPropertyValueTypeMustHaveASetter => GetResourceString("ObjectCreationHandlingPropertyValueTypeMustHaveASetter");
/// <summary>Property '{0}' on type '{1}' is marked with JsonObjectCreationHandling.Populate but its type allows polymorphic deserialization.</summary>
internal static string @ObjectCreationHandlingPropertyCannotAllowPolymorphicDeserialization => GetResourceString("ObjectCreationHandlingPropertyCannotAllowPolymorphicDeserialization");
/// <summary>Property '{0}' on type '{1}' is marked with JsonObjectCreationHandling.Populate but it is a read-only member and JsonSerializerOptions has IgnoreReadOnlyProperties or IgnoreReadOnlyFields set.</summary>
internal static string @ObjectCreationHandlingPropertyCannotAllowReadOnlyMember => GetResourceString("ObjectCreationHandlingPropertyCannotAllowReadOnlyMember");
/// <summary>JsonObjectCreationHandling.Populate is incompatible with reference handling.</summary>
internal static string @ObjectCreationHandlingPropertyCannotAllowReferenceHandling => GetResourceString("ObjectCreationHandlingPropertyCannotAllowReferenceHandling");
/// <summary>JsonObjectCreationHandling.Populate is currently not supported in types with parameterized constructors.</summary>
internal static string @ObjectCreationHandlingPropertyDoesNotSupportParameterizedConstructors => GetResourceString("ObjectCreationHandlingPropertyDoesNotSupportParameterizedConstructors");
/// <summary>Either the JSON value is not in a supported format, or is out of bounds for the {0} type.</summary>
internal static string @FormatNumericType => GetResourceString("FormatNumericType");
/// <summary>Supported indentation characters are space and horizontal tab.</summary>
internal static string @InvalidIndentCharacter => GetResourceString("InvalidIndentCharacter");
/// <summary>Indentation size must be between {0} and {1}.</summary>
internal static string @InvalidIndentSize => GetResourceString("InvalidIndentSize");
/// <summary>PipeWriter.FlushAsync was canceled.</summary>
internal static string @PipeWriterCanceled => GetResourceString("PipeWriterCanceled");
/// <summary>The PipeWriter '{0}' does not implement PipeWriter.UnflushedBytes.</summary>
internal static string @PipeWriter_DoesNotImplementUnflushedBytes => GetResourceString("PipeWriter_DoesNotImplementUnflushedBytes");
/// <summary>New line can be only "\n" or "\r\n".</summary>
internal static string @InvalidNewLine => GetResourceString("InvalidNewLine");
/// <summary>The property or field '{0}' on type '{1}' doesn't allow getting null values. Consider updating its nullability annotation.</summary>
internal static string @PropertyGetterDisallowNull => GetResourceString("PropertyGetterDisallowNull");
/// <summary>The property or field '{0}' on type '{1}' doesn't allow setting null values. Consider updating its nullability annotation.</summary>
internal static string @PropertySetterDisallowNull => GetResourceString("PropertySetterDisallowNull");
/// <summary>The constructor parameter '{0}' on type '{1}' doesn't allow null values. Consider updating its nullability annotation.</summary>
internal static string @ConstructorParameterDisallowNull => GetResourceString("ConstructorParameterDisallowNull");
/// <summary>JSON schema generation is not supported for contracts using ReferenceHandler.Preserve.</summary>
internal static string @JsonSchemaExporter_ReferenceHandlerPreserve_NotSupported => GetResourceString("JsonSchemaExporter_ReferenceHandlerPreserve_NotSupported");
/// <summary>The depth of the generated JSON schema exceeds the JsonSerializerOptions.MaxDepth setting.</summary>
internal static string @JsonSchemaExporter_DepthTooLarge => GetResourceString("JsonSchemaExporter_DepthTooLarge");
/// <summary>The value '{0}' is not of type '{1}' and cannot be used in this generic collection.</summary>
internal static string @Arg_WrongType => GetResourceString("Arg_WrongType");
/// <summary>Destination array is not long enough to copy all the items in the collection. Check array index and length.</summary>
internal static string @Arg_ArrayPlusOffTooSmall => GetResourceString("Arg_ArrayPlusOffTooSmall");
/// <summary>Only single dimensional arrays are supported for the requested action.</summary>
internal static string @Arg_RankMultiDimNotSupported => GetResourceString("Arg_RankMultiDimNotSupported");
/// <summary>The lower bound of target array must be zero.</summary>
internal static string @Arg_NonZeroLowerBound => GetResourceString("Arg_NonZeroLowerBound");
/// <summary>Target array type is not compatible with the type of items in the collection.</summary>
internal static string @Argument_IncompatibleArrayType => GetResourceString("Argument_IncompatibleArrayType");
/// <summary>The given key '{0}' was not present in the dictionary.</summary>
internal static string @Arg_KeyNotFoundWithKey => GetResourceString("Arg_KeyNotFoundWithKey");
/// <summary>An item with the same key has already been added. Key: {0}</summary>
internal static string @Argument_AddingDuplicate => GetResourceString("Argument_AddingDuplicate");
/// <summary>Operations that change non-concurrent collections must have exclusive access. A concurrent update was performed on this collection and corrupted its state. The collection's state is no longer correct.</summary>
internal static string @InvalidOperation_ConcurrentOperationsNotSupported => GetResourceString("InvalidOperation_ConcurrentOperationsNotSupported");
/// <summary>Collection was modified after the enumerator was instantiated.</summary>
internal static string @InvalidOperation_EnumFailedVersion => GetResourceString("InvalidOperation_EnumFailedVersion");
/// <summary>{0} ('{1}') must be a non-negative value.</summary>
internal static string @ArgumentOutOfRange_Generic_MustBeNonNegative => GetResourceString("ArgumentOutOfRange_Generic_MustBeNonNegative");
/// <summary>{0} ('{1}') must be greater than or equal to '{2}'.</summary>
internal static string @ArgumentOutOfRange_Generic_MustBeGreaterOrEqual => GetResourceString("ArgumentOutOfRange_Generic_MustBeGreaterOrEqual");
/// <summary>{0} ('{1}') must be less than or equal to '{2}'.</summary>
internal static string @ArgumentOutOfRange_Generic_MustBeLessOrEqual => GetResourceString("ArgumentOutOfRange_Generic_MustBeLessOrEqual");
/// <summary>Hashtable's capacity overflowed and went negative. Check load factor, capacity and the current size of the table.</summary>
internal static string @Arg_HTCapacityOverflow => GetResourceString("Arg_HTCapacityOverflow");
/// <summary>Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.</summary>
internal static string @Argument_InvalidOffLen => GetResourceString("Argument_InvalidOffLen");
/// <summary>Writing a JSON property or value before writing the final string value segment is not supported.</summary>
internal static string @CannotWriteWithinString => GetResourceString("CannotWriteWithinString");
/// <summary>Object must be of type Rune.</summary>
internal static string @Arg_MustBeRune => GetResourceString("Arg_MustBeRune");
/// <summary>Index was out of range. Must be non-negative and less than the size of the collection.</summary>
internal static string @ArgumentOutOfRange_IndexMustBeLess => GetResourceString("ArgumentOutOfRange_IndexMustBeLess");
/// <summary>Destination is too short.</summary>
internal static string @Argument_DestinationTooShort => GetResourceString("Argument_DestinationTooShort");
/// <summary>Cannot extract a Unicode scalar value from the specified index in the input.</summary>
internal static string @Argument_CannotExtractScalar => GetResourceString("Argument_CannotExtractScalar");
/// <summary>Mixing UTF encodings in a single multi-segment JSON string is not supported. The previous segment's encoding was '{0}' and the current segment's encoding is '{1}'.</summary>
internal static string @CannotMixEncodings => GetResourceString("CannotMixEncodings");
/// <summary>Duplicate property '{0}' encountered during deserialization of type '{1}'.</summary>
internal static string @DuplicatePropertiesNotAllowed_JsonPropertyInfo => GetResourceString("DuplicatePropertiesNotAllowed_JsonPropertyInfo");
/// <summary>Duplicate property '{0}' encountered during deserialization.</summary>
internal static string @DuplicatePropertiesNotAllowed_NameSpan => GetResourceString("DuplicatePropertiesNotAllowed_NameSpan");
/// <summary>Duplicate properties not allowed during deserialization.</summary>
internal static string @DuplicatePropertiesNotAllowed => GetResourceString("DuplicatePropertiesNotAllowed");
/// <summary>PipeReader.ReadAsync was canceled.</summary>
internal static string @PipeReaderCanceled => GetResourceString("PipeReaderCanceled");
/// <summary>The custom type classifier returned null, indicating it was unable to determine the target type for the JSON payload. Ensure the classifier handles all expected JSON shapes.</summary>
internal static string @PolymorphicTypeClassifierReturnedNull => GetResourceString("PolymorphicTypeClassifierReturnedNull");
/// <summary>The type classifier '{0}' specified for type '{1}' must derive from JsonTypeClassifierFactory.</summary>
internal static string @TypeClassifierMustDeriveFromJsonTypeClassifierFactory => GetResourceString("TypeClassifierMustDeriveFromJsonTypeClassifierFactory");
/// <summary>The type classifier '{0}' does not support type '{1}'.</summary>
internal static string @TypeClassifierNotSupported => GetResourceString("TypeClassifierNotSupported");
/// <summary>JSON value type '{0}' is ambiguous for union type '{1}' because multiple case types can use this value type. Specify a custom type classifier to support deserialization.</summary>
internal static string @UnionAmbiguousJsonValueType => GetResourceString("UnionAmbiguousJsonValueType");
/// <summary>Cannot create values for union type '{0}'. Ensure the type has a public single-parameter constructor for each union case, or configure a constructor in its JSON contract.</summary>
internal static string @UnionCannotCreateValue => GetResourceString("UnionCannotCreateValue");
/// <summary>Cannot read values from union type '{0}'. Ensure the type has a public object Value property, or configure a deconstructor in its JSON contract.</summary>
internal static string @UnionCannotReadValue => GetResourceString("UnionCannotReadValue");
/// <summary>The union type '{0}' must specify at least one union case.</summary>
internal static string @UnionCasesNotPopulated => GetResourceString("UnionCasesNotPopulated");
/// <summary>The union type '{0}' does not support null values.</summary>
internal static string @UnionDoesNotAcceptNull => GetResourceString("UnionDoesNotAcceptNull");
/// <summary>JSON token type '{0}' is not supported for union type '{1}'.</summary>
internal static string @UnionJsonTokenTypeNotSupported => GetResourceString("UnionJsonTokenTypeNotSupported");
/// <summary>The runtime type '{0}' is not supported by union type '{1}'.</summary>
internal static string @UnionRuntimeTypeNotMatchedToCase => GetResourceString("UnionRuntimeTypeNotMatchedToCase");
/// <summary>The custom type classifier for union type '{0}' returned null for JSON token type '{1}'.</summary>
internal static string @UnionTypeClassifierReturnedNull => GetResourceString("UnionTypeClassifierReturnedNull");
/// <summary>The JsonUnionTypeStructuralClassifier cannot classify union type '{0}' because the case types '{1}' and '{2}' can both deserialize JSON values of type '{3}'. At most one case without object property metadata per JSON value type is supported.</summary>
internal static string @UnionTypeStructuralClassifierAmbiguousCases => GetResourceString("UnionTypeStructuralClassifierAmbiguousCases");
/// <summary>The JsonUnionTypeStructuralClassifier cannot classify union type '{0}' because the case type '{1}' uses polymorphism or is itself a union type. Union cases that use polymorphism or are union types are not supported.</summary>
internal static string @UnionTypeStructuralClassifierCaseNotSupported => GetResourceString("UnionTypeStructuralClassifierCaseNotSupported");
/// <summary>The JsonUnionTypeStructuralClassifier only supports union types. The type '{0}' is being configured as a polymorphic type or another non-union classification.</summary>
internal static string @UnionTypeStructuralClassifierOnlyForUnions => GetResourceString("UnionTypeStructuralClassifierOnlyForUnions");
/// <summary>The JsonUnionTypeStructuralClassifier cannot classify union type '{0}' when reference preservation is enabled. Reference-preserving deserialization is not supported.</summary>
internal static string @UnionTypeStructuralClassifierPreserveReferencesNotSupported => GetResourceString("UnionTypeStructuralClassifierPreserveReferencesNotSupported");
/// <summary>The JsonUnionTypeStructuralClassifier cannot classify union type '{0}' because the case type '{1}' can never be selected uniquely. The case type '{2}' recognizes every property name recognized by '{1}' and has no stricter required-property or unmapped-memb ...</summary>
internal static string @UnionTypeStructuralClassifierUnreachableObjectCase => GetResourceString("UnionTypeStructuralClassifierUnreachableObjectCase");
}
}