426 references to GetResourceString
System.Private.DataContractSerialization (426)
artifacts\obj\System.Private.DataContractSerialization\Debug\net10.0\System.SR.cs (426)
16internal static string @ArrayExceededSize => GetResourceString("ArrayExceededSize", @"Array length '{0}' provided by the get-only collection of type '{1}' is less than the number of array elements found in the input stream. Consider increasing the length of the array."); 18internal static string @ArrayExceededSizeAttribute => GetResourceString("ArrayExceededSizeAttribute", @"Array length '{0}' provided by Size attribute is not equal to the number of array elements '{1}' from namespace '{2}' found."); 20internal static string @ArrayTypeIsNotSupported_GeneratingCode => GetResourceString("ArrayTypeIsNotSupported_GeneratingCode", @"An internal error has occurred. '{0}[]' is not supported when generating code for serialization."); 22internal static string @CannotDeserializeRefAtTopLevel => GetResourceString("CannotDeserializeRefAtTopLevel", @"Cannot deserialize since root element references unrecognized object with id '{0}'."); 24internal static string @CannotLoadMemberType => GetResourceString("CannotLoadMemberType", @"Cannot load member type '{0}'."); 26internal static string @CannotSerializeObjectWithCycles => GetResourceString("CannotSerializeObjectWithCycles", @"Object graph for type '{0}' contains cycles and cannot be serialized if references are not tracked. Consider using the DataContractAttribute with the IsReference property set to true."); 28internal static string @CanOnlyStoreIntoArgOrLocGot0 => GetResourceString("CanOnlyStoreIntoArgOrLocGot0", @"An internal error has occurred. Data can only be stored into ArgBuilder or LocalBuilder. Got: {0}."); 30internal static string @CharIsInvalidPrimitive => GetResourceString("CharIsInvalidPrimitive", @"An internal error has occurred. Char is not a valid schema primitive and should be treated as int in DataContract."); 32internal static string @CallbackMustReturnVoid => GetResourceString("CallbackMustReturnVoid", @"Serialization Callback '{1}' in type '{0}' must return void."); 34internal static string @CallbackParameterInvalid => GetResourceString("CallbackParameterInvalid", @"Serialization Callback '{1}' in type '{0}' must have a single parameter of type '{2}'."); 36internal static string @CallbacksCannotBeVirtualMethods => GetResourceString("CallbacksCannotBeVirtualMethods", @"Virtual Method '{0}' of type '{1}' cannot be marked with '{2}' attribute."); 38internal static string @CollectionMustHaveAddMethod => GetResourceString("CollectionMustHaveAddMethod", @"Collection type '{0}' does not have a valid Add method."); 40internal static string @CollectionMustHaveGetEnumeratorMethod => GetResourceString("CollectionMustHaveGetEnumeratorMethod", @"Collection type '{0}' does not have a valid GetEnumerator method."); 42internal static string @CollectionMustHaveItemType => GetResourceString("CollectionMustHaveItemType", @"Collection type '{0}' must have a non-null item type."); 44internal static string @CollectionTypeCannotBeBuiltIn => GetResourceString("CollectionTypeCannotBeBuiltIn", @"{0} is a built-in type and cannot be a collection."); 46internal static string @CollectionTypeCannotHaveDataContract => GetResourceString("CollectionTypeCannotHaveDataContract", @"{0} has DataContractAttribute attribute."); 48internal static string @CollectionTypeDoesNotHaveAddMethod => GetResourceString("CollectionTypeDoesNotHaveAddMethod", @"{0} does not have a valid Add method with parameter of type '{1}'."); 50internal static string @CollectionTypeDoesNotHaveDefaultCtor => GetResourceString("CollectionTypeDoesNotHaveDefaultCtor", @"{0} does not have a default constructor."); 52internal static string @CollectionTypeHasMultipleDefinitionsOfInterface => GetResourceString("CollectionTypeHasMultipleDefinitionsOfInterface", @"{0} has multiple definitions of interface '{1}'."); 54internal static string @CollectionTypeIsNotIEnumerable => GetResourceString("CollectionTypeIsNotIEnumerable", @"{0} does not implement IEnumerable interface."); 56internal static string @DataContractCacheOverflow => GetResourceString("DataContractCacheOverflow", @"An internal error has occurred. DataContract cache overflow."); 58internal static string @DataContractNamespaceAlreadySet => GetResourceString("DataContractNamespaceAlreadySet", @"ContractNamespaceAttribute attribute maps CLR namespace '{2}' to multiple data contract namespaces '{0}' and '{1}'. You can map a CLR namespace to only one data contract namespace."); 60internal static string @DataContractNamespaceIsNotValid => GetResourceString("DataContractNamespaceIsNotValid", @"DataContract namespace '{0}' is not a valid URI."); 62internal static string @DataContractNamespaceReserved => GetResourceString("DataContractNamespaceReserved", @"DataContract namespace '{0}' cannot be specified since it is reserved."); 64internal static string @DataMemberOnEnumField => GetResourceString("DataMemberOnEnumField", @"Member '{0}.{1}' has DataMemberAttribute attribute. Use EnumMemberAttribute attribute instead."); 66internal static string @DcTypeNotFoundOnDeserialize => GetResourceString("DcTypeNotFoundOnDeserialize", @"Element '{2}:{3}' contains data of the '{0}:{1}' data contract. The deserializer has no knowledge of any type that maps to this contract. Add the type corresponding to '{1}' to the list of known types - for example, by using the KnownTypeAttribute attribute or by adding it to the list of known types passed to DataContractSerializer."); 68internal static string @DcTypeNotFoundOnSerialize => GetResourceString("DcTypeNotFoundOnSerialize", @"Type '{0}' with data contract name '{1}:{2}' is not expected. Add any types not known statically to the list of known types - for example, by using the KnownTypeAttribute attribute or by adding them to the list of known types passed to DataContractSerializer."); 70internal static string @DcTypeNotResolvedOnDeserialize => GetResourceString("DcTypeNotResolvedOnDeserialize", @"Element '{2}:{3}' contains data from a type that maps to the name '{0}:{1}'. The deserializer has no knowledge of any type that maps to this name. Consider changing the implementation of the ResolveName method on your DataContractResolver to return a non-null value for name '{1}' and namespace '{0}'."); 72internal static string @DeserializedObjectWithIdNotFound => GetResourceString("DeserializedObjectWithIdNotFound", @"Deserialized object with reference id '{0}' not found in stream."); 74internal static string @DupContractInKnownTypes => GetResourceString("DupContractInKnownTypes", @"Type '{0}' cannot be added to list of known types since another type '{1}' with the same data contract name '{2}:{3}' is already present."); 76internal static string @DupKeyValueName => GetResourceString("DupKeyValueName", @"The collection data contract type '{0}' specifies the same value '{1}' for both the KeyName and the ValueName properties. This is not allowed. Consider changing either the KeyName or the ValueName property."); 78internal static string @DupEnumMemberValue => GetResourceString("DupEnumMemberValue", @"Type '{2}' contains two members '{0}' 'and '{1}' with the same name '{3}'. Multiple members with the same name in one type are not supported. Consider changing one of the member names using EnumMemberAttribute attribute."); 80internal static string @DupMemberName => GetResourceString("DupMemberName", @"Type '{2}' contains two members '{0}' 'and '{1}' with the same data member name '{3}'. Multiple members with the same name in one type are not supported. Consider changing one of the member names using DataMemberAttribute attribute."); 82internal static string @DuplicateAttribute => GetResourceString("DuplicateAttribute", @"Invalid Callback. Method '{3}' in type '{2}' has both '{0}' and '{1}'."); 84internal static string @DuplicateCallback => GetResourceString("DuplicateCallback", @"Invalid attribute. Both '{0}' and '{1}' in type '{2}' have '{3}'."); 86internal static string @EncounteredWithNameNamespace => GetResourceString("EncounteredWithNameNamespace", @"{0}. Encountered '{1}' with name '{2}', namespace '{3}'."); 88internal static string @EnumTypeCannotHaveIsReference => GetResourceString("EnumTypeCannotHaveIsReference", @"Enum type '{0}' cannot have the IsReference setting of '{1}'. Either change the setting to '{2}', or remove it completely."); 90internal static string @ErrorDeserializing => GetResourceString("ErrorDeserializing", @"There was an error deserializing the object {0}. {1}"); 92internal static string @ErrorInLine => GetResourceString("ErrorInLine", @"Error in line {0} position {1}."); 94internal static string @ErrorIsStartObject => GetResourceString("ErrorIsStartObject", @"There was an error checking start element of object {0}. {1}"); 96internal static string @ErrorSerializing => GetResourceString("ErrorSerializing", @"There was an error serializing the object {0}. {1}"); 98internal static string @ErrorTypeInfo => GetResourceString("ErrorTypeInfo", @"of type {0}"); 100internal static string @ErrorWriteEndObject => GetResourceString("ErrorWriteEndObject", @"There was an error writing end element of object {0}. {1}"); 102internal static string @ErrorWriteStartObject => GetResourceString("ErrorWriteStartObject", @"There was an error writing start element of object {0}. {1}"); 104internal static string @ExceededMaxItemsQuota => GetResourceString("ExceededMaxItemsQuota", @"Maximum number of items that can be serialized or deserialized in an object graph is '{0}'."); 106internal static string @ExpectingElement => GetResourceString("ExpectingElement", @"Expecting element '{1}' from namespace '{0}'."); 108internal static string @ExpectingElementAtDeserialize => GetResourceString("ExpectingElementAtDeserialize", @"Expecting state '{0}' when ReadObject is called."); 110internal static string @ExpectingEnd => GetResourceString("ExpectingEnd", @"Expecting End'{0}'."); 112internal static string @ExpectingState => GetResourceString("ExpectingState", @"Expecting state '{0}'."); 114internal static string @GenericNameBraceMismatch => GetResourceString("GenericNameBraceMismatch", @"The data contract name '{0}' for type '{1}' has a curly brace '{{' that is not matched with a closing curly brace. Curly braces have special meaning in data contract names - they are used to customize the naming of data contracts for generic types."); 116internal static string @GenericParameterNotValid => GetResourceString("GenericParameterNotValid", @"In the data contract name for type '{1}', there are curly braces with '{0}' inside, which is an invalid value. Curly braces have special meaning in data contract names - they are used to customize the naming of data contracts for generic types. Based on the number of generic parameters this type has, the contents of the curly braces must either be a number between 0 and '{2}' to insert the name of the generic parameter at that index or the '#' symbol to insert a digest of the generic parameter namespaces."); 118internal static string @InconsistentIsReference => GetResourceString("InconsistentIsReference", @"The IsReference setting for type '{0}' is '{1}', but the same setting for its parent class '{2}' is '{3}'. Derived types must have the same value for IsReference as the base type. Change the setting on type '{0}' to '{3}', or on type '{2}' to '{1}', or do not set IsReference explicitly."); 120internal static string @IndexedPropertyCannotBeSerialized => GetResourceString("IndexedPropertyCannotBeSerialized", @"Property '{1}' in type '{0}' cannot be serialized because serialization of indexed properties is not supported."); 122internal static string @InvalidCollectionContractItemName => GetResourceString("InvalidCollectionContractItemName", @"Type '{0}' cannot have CollectionDataContractAttribute attribute ItemName set to null or empty string."); 124internal static string @InvalidCollectionContractKeyName => GetResourceString("InvalidCollectionContractKeyName", @"Type '{0}' cannot have CollectionDataContractAttribute attribute KeyName set to null or empty string."); 126internal static string @InvalidCollectionContractKeyNoDictionary => GetResourceString("InvalidCollectionContractKeyNoDictionary", @"The collection data contract type '{0}' specifies '{1}' for the KeyName property. This is not allowed since the type is not IDictionary. Remove the setting for the KeyName property."); 128internal static string @InvalidCollectionContractName => GetResourceString("InvalidCollectionContractName", @"Type '{0}' cannot have CollectionDataContractAttribute attribute Name set to null or empty string."); 130internal static string @InvalidCollectionContractNamespace => GetResourceString("InvalidCollectionContractNamespace", @"Type '{0}' cannot have CollectionDataContractAttribute attribute Namespace set to null."); 132internal static string @InvalidCollectionContractValueName => GetResourceString("InvalidCollectionContractValueName", @"Type '{0}' cannot have CollectionDataContractAttribute attribute ValueName set to null or empty string."); 134internal static string @InvalidCollectionContractValueNoDictionary => GetResourceString("InvalidCollectionContractValueNoDictionary", @"The collection data contract type '{0}' specifies '{1}' for the ValueName property. This is not allowed since the type is not IDictionary. Remove the setting for the ValueName property."); 136internal static string @InvalidCollectionDataContract => GetResourceString("InvalidCollectionDataContract", @"Type '{0}' with CollectionDataContractAttribute attribute is an invalid collection type since it"); 138internal static string @InvalidCollectionType => GetResourceString("InvalidCollectionType", @"Type '{0}' is an invalid collection type since it"); 140internal static string @InvalidDataContractName => GetResourceString("InvalidDataContractName", @"Type '{0}' cannot have DataContractAttribute attribute Name set to null or empty string."); 142internal static string @InvalidDataContractNamespace => GetResourceString("InvalidDataContractNamespace", @"Type '{0}' cannot have DataContractAttribute attribute Namespace set to null."); 144internal static string @InvalidDataMemberName => GetResourceString("InvalidDataMemberName", @"Member '{0}' in type '{1}' cannot have DataMemberAttribute attribute Name set to null or empty string."); 146internal static string @InvalidDataNode => GetResourceString("InvalidDataNode", @"'{0}' is an invalid data node when deserializing extension data."); 148internal static string @InvalidEnumBaseType => GetResourceString("InvalidEnumBaseType", @"Type '{0}' in namespace '{1}' is not a valid base type for enum '{2}' in namespace '{3}'."); 150internal static string @InvalidEnumMemberValue => GetResourceString("InvalidEnumMemberValue", @"'{0}' in type '{1}' cannot have EnumMemberAttribute attribute Value set to null or empty string."); 152internal static string @InvalidEnumValueOnRead => GetResourceString("InvalidEnumValueOnRead", @"Invalid enum value '{0}' cannot be deserialized into type '{1}'. Ensure that the necessary enum values are present and are marked with EnumMemberAttribute attribute if the type has DataContractAttribute attribute."); 154internal static string @InvalidEnumValueOnWrite => GetResourceString("InvalidEnumValueOnWrite", @"Enum value '{0}' is invalid for type '{1}' and cannot be serialized. Ensure that the necessary enum values are present and are marked with EnumMemberAttribute attribute if the type has DataContractAttribute attribute."); 156internal static string @InvalidGetSchemaMethod => GetResourceString("InvalidGetSchemaMethod", @"Type '{0}' cannot have MethodName on XmlSchemaProviderAttribute attribute set to null or empty string."); 158internal static string @InvalidGlobalDataContractNamespace => GetResourceString("InvalidGlobalDataContractNamespace", @"CLR namespace '{0}' cannot have ContractNamespace set to null."); 160internal static string @InvalidMember => GetResourceString("InvalidMember", @"Member '{0}.{1}' cannot be serialized since it is neither a field nor a property, and therefore cannot be marked with the DataMemberAttribute attribute. Remove the DataMemberAttribute attribute from the '{1}' member."); 162internal static string @InvalidNonNullReturnValueByIsAny => GetResourceString("InvalidNonNullReturnValueByIsAny", @"Method '{0}.{1}()' returns a non-null value. The return value must be null since IsAny"); 164internal static string @InvalidPrimitiveType_Serialization => GetResourceString("InvalidPrimitiveType_Serialization", @"Type '{0}' is not a valid serializable type."); 166internal static string @InvalidReturnTypeOnGetSchemaMethod => GetResourceString("InvalidReturnTypeOnGetSchemaMethod", @"Method '{0}.{1}()' returns '{2}'. The return type must be compatible with '{3}'."); 168internal static string @InvalidSizeDefinition => GetResourceString("InvalidSizeDefinition", @"Invalid Size '{0}'. Must be non-negative integer."); 170internal static string @InvalidXmlDataContractName => GetResourceString("InvalidXmlDataContractName", @"XML data contract Name for type '{0}' cannot be set to null or empty string."); 172internal static string @InvalidXsIdDefinition => GetResourceString("InvalidXsIdDefinition", @"Invalid Id '{0}'. Must not be null or empty."); 174internal static string @InvalidXsRefDefinition => GetResourceString("InvalidXsRefDefinition", @"Invalid Ref '{0}'. Must not be null or empty."); 176internal static string @IsAnyCannotBeNull => GetResourceString("IsAnyCannotBeNull", @"A null value cannot be serialized at the top level for IXmlSerializable root type '{0}' since its IsAny setting is 'true'. This type must write all its contents including the root element. Verify that the IXmlSerializable implementation is correct."); 178internal static string @IsAnyCannotBeSerializedAsDerivedType => GetResourceString("IsAnyCannotBeSerializedAsDerivedType", @"An object of type '{0}' cannot be serialized at the top level for IXmlSerializable root type '{1}' since its IsAny setting is 'true'. This type must write all its contents including the root element. Verify that the IXmlSerializable implementation is correct."); 180internal static string @IsAnyCannotHaveXmlRoot => GetResourceString("IsAnyCannotHaveXmlRoot", @"Type '{0}' cannot specify an XmlRootAttribute attribute because its IsAny setting is 'true'. This type must write all its contents including the root element. Verify that the IXmlSerializable implementation is correct."); 182internal static string @IsNotAssignableFrom => GetResourceString("IsNotAssignableFrom", @"An internal error has occurred. '{0}' is not assignable from '{1}' - error generating code for serialization."); 184internal static string @IsRequiredDataMemberOnIsReferenceDataContractType => GetResourceString("IsRequiredDataMemberOnIsReferenceDataContractType", @"'{0}.{1}' has the IsRequired setting of '{2}. However, '{0}' has the IsReference setting of '{2}', because either it is set explicitly, or it is derived from a base class. Set IsRequired on '{0}.{1}' to false, or disable IsReference on '{0}'."); 186internal static string @IXmlSerializableCannotHaveCollectionDataContract => GetResourceString("IXmlSerializableCannotHaveCollectionDataContract", @"Type '{0}' cannot be IXmlSerializable and have CollectionDataContractAttribute attribute."); 188internal static string @IXmlSerializableCannotHaveDataContract => GetResourceString("IXmlSerializableCannotHaveDataContract", @"Type '{0}' cannot be IXmlSerializable and have DataContractAttribute attribute."); 190internal static string @IXmlSerializableIllegalOperation => GetResourceString("IXmlSerializableIllegalOperation", @"This method cannot be called from IXmlSerializable implementations."); 192internal static string @IXmlSerializableMissingEndElements => GetResourceString("IXmlSerializableMissingEndElements", @"IXmlSerializable.WriteXml method of type '{0}' did not close all open tags. Verify that the IXmlSerializable implementation is correct."); 194internal static string @IXmlSerializableMustHaveDefaultConstructor => GetResourceString("IXmlSerializableMustHaveDefaultConstructor", @"IXmlSerializable Type '{0}' must have default constructor."); 196internal static string @IXmlSerializableWritePastSubTree => GetResourceString("IXmlSerializableWritePastSubTree", @"IXmlSerializable.WriteXml method of type '{0}' attempted to close too many tags. Verify that the IXmlSerializable implementation is correct."); 198internal static string @KnownTypeAttributeEmptyString => GetResourceString("KnownTypeAttributeEmptyString", @"Method name specified by KnownTypeAttribute attribute on type '{0}' cannot be the empty string."); 200internal static string @KnownTypeAttributeUnknownMethod => GetResourceString("KnownTypeAttributeUnknownMethod", @"KnownTypeAttribute attribute on type '{1}' specifies a method named '{0}' to provide known types. Static method '{0}()' was not found on this type. Ensure that the method exists and is marked as static."); 202internal static string @KnownTypeAttributeReturnType => GetResourceString("KnownTypeAttributeReturnType", @"KnownTypeAttribute attribute on type '{0}' specifies a method named '{1}' to provide known types. The return type of this method is invalid because it is not assignable to IEnumerable<Type>. Ensure that the method exists and has a valid signature."); 204internal static string @KnownTypeAttributeOneScheme => GetResourceString("KnownTypeAttributeOneScheme", @"Type '{0}': If a KnownTypeAttribute attribute specifies a method it must be the only KnownTypeAttribute attribute on that type."); 206internal static string @KnownTypeAttributeValidMethodTypes => GetResourceString("KnownTypeAttributeValidMethodTypes", @"Method specified by KnownTypeAttribute attribute on type '{0}' does not expose valid types."); 208internal static string @KnownTypeAttributeNoData => GetResourceString("KnownTypeAttributeNoData", @"KnownTypeAttribute attribute on type '{0}' contains no data."); 210internal static string @KnownTypeAttributeMethodNull => GetResourceString("KnownTypeAttributeMethodNull", @"Method specified by KnownTypeAttribute attribute on type '{0}' returned null."); 212internal static string @MaxArrayLengthExceeded => GetResourceString("MaxArrayLengthExceeded", @"The maximum array length ({0}) has been exceeded while reading XML data for array of type '{1}'."); 214internal static string @MissingGetSchemaMethod => GetResourceString("MissingGetSchemaMethod", @"Type '{0}' does not have a static method '{1}' that takes a parameter of type 'System.Xml.Schema.XmlSchemaSet' as specified by the XmlSchemaProviderAttribute attribute."); 216internal static string @MultipleIdDefinition => GetResourceString("MultipleIdDefinition", @"Invalid XML encountered. The same Id value '{0}' is defined more than once. Multiple objects cannot be deserialized using the same Id."); 218internal static string @NoConversionPossibleTo => GetResourceString("NoConversionPossibleTo", @"An internal error has occurred. No conversion is possible to '{0}' - error generating code for serialization."); 220internal static string @NoGetMethodForProperty => GetResourceString("NoGetMethodForProperty", @"No get method for property '{1}' in type '{0}'."); 222internal static string @NoSetMethodForProperty => GetResourceString("NoSetMethodForProperty", @"No set method for property '{1}' in type '{0}'."); 224internal static string @NullKnownType => GetResourceString("NullKnownType", @"One of the known types provided to the serializer via '{0}' argument was invalid because it was null. All known types specified must be non-null values."); 226internal static string @NullValueReturnedForGetOnlyCollection => GetResourceString("NullValueReturnedForGetOnlyCollection", @"The get-only collection of type '{0}' returned a null value. The input stream contains collection items which cannot be added if the instance is null. Consider initializing the collection either in the constructor of the object or in the getter."); 228internal static string @ObjectTableOverflow => GetResourceString("ObjectTableOverflow", @"An internal error has occurred. Object table overflow. This could be caused by serializing or deserializing extremely large object graphs."); 230internal static string @ParameterCountMismatch => GetResourceString("ParameterCountMismatch", @"Invalid number of parameters to call method '{0}'. Expected '{1}' parameters, but '{2}' were provided."); 232internal static string @PartialTrustCollectionContractAddMethodNotPublic => GetResourceString("PartialTrustCollectionContractAddMethodNotPublic", @"The collection data contract type '{0}' cannot be deserialized because the method '{1}' is not public. Making the method public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 234internal static string @PartialTrustCollectionContractNoPublicConstructor => GetResourceString("PartialTrustCollectionContractNoPublicConstructor", @"The collection data contract type '{0}' cannot be deserialized because it does not have a public parameterless constructor. Adding a public parameterless constructor will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 236internal static string @PartialTrustCollectionContractTypeNotPublic => GetResourceString("PartialTrustCollectionContractTypeNotPublic", @"The collection data contract type '{0}' cannot be deserialized because it does not have a public parameterless constructor. Adding a public parameterless constructor will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 238internal static string @PartialTrustDataContractOnSerializingNotPublic => GetResourceString("PartialTrustDataContractOnSerializingNotPublic", @"The data contract type '{0}' cannot be serialized because the OnSerializing method '{1}' is not public. Making the method public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 240internal static string @PartialTrustDataContractOnSerializedNotPublic => GetResourceString("PartialTrustDataContractOnSerializedNotPublic", @"The data contract type '{0}' cannot be serialized because the OnSerialized method '{1}' is not public. Making the method public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 242internal static string @PartialTrustDataContractOnDeserializingNotPublic => GetResourceString("PartialTrustDataContractOnDeserializingNotPublic", @"The data contract type '{0}' cannot be deserialized because the OnDeserializing method '{1}' is not public. Making the method public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 244internal static string @PartialTrustDataContractOnDeserializedNotPublic => GetResourceString("PartialTrustDataContractOnDeserializedNotPublic", @"The data contract type '{0}' cannot be deserialized because the OnDeserialized method '{1}' is not public. Making the method public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 246internal static string @PartialTrustDataContractFieldGetNotPublic => GetResourceString("PartialTrustDataContractFieldGetNotPublic", @"The data contract type '{0}' cannot be serialized because the member '{1}' is not public. Making the member public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 248internal static string @PartialTrustDataContractFieldSetNotPublic => GetResourceString("PartialTrustDataContractFieldSetNotPublic", @"The data contract type '{0}' cannot be deserialized because the member '{1}' is not public. Making the member public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 250internal static string @PartialTrustDataContractPropertyGetNotPublic => GetResourceString("PartialTrustDataContractPropertyGetNotPublic", @"The data contract type '{0}' cannot be serialized because the property '{1}' does not have a public getter. Adding a public getter will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 252internal static string @PartialTrustDataContractPropertySetNotPublic => GetResourceString("PartialTrustDataContractPropertySetNotPublic", @"The data contract type '{0}' cannot be deserialized because the property '{1}' does not have a public setter. Adding a public setter will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 254internal static string @PartialTrustDataContractTypeNotPublic => GetResourceString("PartialTrustDataContractTypeNotPublic", @"The data contract type '{0}' is not serializable because it is not public. Making the type public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 256internal static string @PartialTrustNonAttributedSerializableTypeNoPublicConstructor => GetResourceString("PartialTrustNonAttributedSerializableTypeNoPublicConstructor", @"The type '{0}' cannot be deserialized because it does not have a public parameterless constructor. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 258internal static string @PartialTrustIXmlSerializableTypeNotPublic => GetResourceString("PartialTrustIXmlSerializableTypeNotPublic", @"The IXmlSerializable type '{0}' is not serializable in partial trust because it is not public. Adding a public parameterless constructor will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 260internal static string @PartialTrustIXmlSerialzableNoPublicConstructor => GetResourceString("PartialTrustIXmlSerialzableNoPublicConstructor", @"The IXmlSerializable type '{0}' cannot be deserialized because it does not have a public parameterless constructor. Adding a public parameterless constructor will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications."); 262internal static string @NonAttributedSerializableTypesMustHaveDefaultConstructor => GetResourceString("NonAttributedSerializableTypesMustHaveDefaultConstructor", @"The Type '{0}' must have a parameterless constructor."); 264internal static string @AttributedTypesCannotInheritFromNonAttributedSerializableTypes => GetResourceString("AttributedTypesCannotInheritFromNonAttributedSerializableTypes", @"Type '{0}' cannot inherit from a type that is not marked with DataContractAttribute or SerializableAttribute. Consider marking the base type '{1}' with DataContractAttribute or SerializableAttribute, or removing them from the derived type."); 266internal static string @QuotaIsReadOnly => GetResourceString("QuotaIsReadOnly", @"The '{0}' quota is readonly."); 268internal static string @QuotaCopyReadOnly => GetResourceString("QuotaCopyReadOnly", @"Cannot copy XmlDictionaryReaderQuotas. Target is readonly."); 270internal static string @RequiredMemberMustBeEmitted => GetResourceString("RequiredMemberMustBeEmitted", @"Member {0} in type {1} cannot be serialized. This exception is usually caused by trying to use a null value where a null value is not allowed. The '{0}' member is set to its default value (usually null or zero). The member's EmitDefault setting is 'false', indicating that the member should not be serialized. However, the member's IsRequired setting is 'true', indicating that it must be serialized. This conflict cannot be resolved. Consider setting '{0}' to a non-default value. Alternatively, you can change the EmitDefaultValue property on the DataMemberAttribute attribute to true, or changing the IsRequired property to false."); 272internal static string @ResolveTypeReturnedFalse => GetResourceString("ResolveTypeReturnedFalse", @"An object of type '{0}' which derives from DataContractResolver returned false from its TryResolveType method when attempting to resolve the name for an object of type '{1}', indicating that the resolution failed. Change the TryResolveType implementation to return true."); 274internal static string @ResolveTypeReturnedNull => GetResourceString("ResolveTypeReturnedNull", @"An object of type '{0}' which derives from DataContractResolver returned a null typeName or typeNamespace but not both from its TryResolveType method when attempting to resolve the name for an object of type '{1}'. Change the TryResolveType implementation to return non-null values, or to return null values for both typeName and typeNamespace in order to serialize as the declared type."); 276internal static string @SupportForMultidimensionalArraysNotPresent => GetResourceString("SupportForMultidimensionalArraysNotPresent", @"Multi-dimensional arrays are not supported."); 278internal static string @TooManyCollectionContracts => GetResourceString("TooManyCollectionContracts", @"Type '{0}' has more than one CollectionDataContractAttribute attribute."); 280internal static string @TooManyDataContracts => GetResourceString("TooManyDataContracts", @"Type '{0}' has more than one DataContractAttribute attribute."); 282internal static string @TooManyDataMembers => GetResourceString("TooManyDataMembers", @"Member '{0}.{1}' has more than one DataMemberAttribute attribute."); 284internal static string @TooManyEnumMembers => GetResourceString("TooManyEnumMembers", @"Member '{0}.{1}' has more than one EnumMemberAttribute attribute."); 286internal static string @TooManyIgnoreDataMemberAttributes => GetResourceString("TooManyIgnoreDataMemberAttributes", @"Member '{0}.{1}' has more than one IgnoreDataMemberAttribute attribute."); 288internal static string @TypeNotSerializable => GetResourceString("TypeNotSerializable", @"Type '{0}' cannot be serialized. Consider marking it with the DataContractAttribute attribute, and marking all of its members you want serialized with the DataMemberAttribute attribute. Alternatively, you can ensure that the type is public and has a parameterless constructor - all public members of the type will then be serialized, and no attributes will be required."); 290internal static string @UnexpectedContractType => GetResourceString("UnexpectedContractType", @"An internal error has occurred. Unexpected contract type '{0}' for type '{1}' encountered."); 292internal static string @UnexpectedElementExpectingElements => GetResourceString("UnexpectedElementExpectingElements", @"'{0}' '{1}' from namespace '{2}' is not expected. Expecting element '{3}'."); 294internal static string @UnexpectedEndOfFile => GetResourceString("UnexpectedEndOfFile", @"Unexpected end of file."); 296internal static string @UnknownConstantType => GetResourceString("UnknownConstantType", @"Internal Error: Unrecognized constant type {0}."); 298internal static string @ValueTypeCannotBeNull => GetResourceString("ValueTypeCannotBeNull", @"ValueType '{0}' cannot be null."); 300internal static string @ValueTypeCannotHaveBaseType => GetResourceString("ValueTypeCannotHaveBaseType", @"Data contract '{0}' from namespace '{1}' is a value type and cannot have base contract '{2}' from namespace '{3}'."); 302internal static string @ValueTypeCannotHaveId => GetResourceString("ValueTypeCannotHaveId", @"ValueType '{0}' cannot have id."); 304internal static string @ValueTypeCannotHaveIsReference => GetResourceString("ValueTypeCannotHaveIsReference", @"Value type '{0}' cannot have the IsReference setting of '{1}'. Either change the setting to '{2}', or remove it completely."); 306internal static string @ValueTypeCannotHaveRef => GetResourceString("ValueTypeCannotHaveRef", @"ValueType '{0}' cannot have ref to another object."); 308internal static string @XmlElementAttributes => GetResourceString("XmlElementAttributes", @"Only Element nodes have attributes."); 310internal static string @XmlForObjectCannotHaveContent => GetResourceString("XmlForObjectCannotHaveContent", @"Element {0} from namespace {1} cannot have child contents to be deserialized as an object. Please use XElement to deserialize this pattern of XML."); 312internal static string @XmlInvalidConversion => GetResourceString("XmlInvalidConversion", @"The value '{0}' cannot be parsed as the type '{1}'."); 314internal static string @XmlInvalidConversionWithoutValue => GetResourceString("XmlInvalidConversionWithoutValue", @"The value cannot be parsed as the type '{0}'."); 316internal static string @XmlStartElementExpected => GetResourceString("XmlStartElementExpected", @"Start element expected. Found {0}."); 318internal static string @XmlWriterMustBeInElement => GetResourceString("XmlWriterMustBeInElement", @"WriteState '{0}' not valid. Caller must write start element before serializing in contentOnly mode."); 320internal static string @NonOptionalFieldMemberOnIsReferenceSerializableType => GetResourceString("NonOptionalFieldMemberOnIsReferenceSerializableType", @"{0}.{1}' is not marked with OptionalFieldAttribute, thus indicating that it must be serialized. However, '{0}' derives from a class marked with DataContractAttribute and an IsReference setting of '{2}'. It is not possible to have required data members on IsReference classes. Either decorate '{0}.{1}' with OptionalFieldAttribute, or disable the IsReference setting on the appropriate parent class."); 322internal static string @OffsetExceedsBufferSize => GetResourceString("OffsetExceedsBufferSize", @"The specified offset exceeds the buffer size ({0} bytes)."); 324internal static string @SizeExceedsRemainingBufferSpace => GetResourceString("SizeExceedsRemainingBufferSpace", @"The specified size exceeds the remaining buffer space ({0} bytes)."); 326internal static string @ValueMustBeInRange => GetResourceString("ValueMustBeInRange", @"The value of this argument must fall within the range {0} to {1}."); 328internal static string @XmlArrayTooSmallOutput => GetResourceString("XmlArrayTooSmallOutput", @"Array too small. Must be able to hold at least {0}."); 330internal static string @XmlAsyncIsRunningException => GetResourceString("XmlAsyncIsRunningException", @"An asynchronous operation is already in progress."); 332internal static string @XmlInvalidBase64Length => GetResourceString("XmlInvalidBase64Length", @"Base64 sequence length ({0}) not valid. Must be a multiple of 4."); 334internal static string @XmlInvalidBase64Sequence => GetResourceString("XmlInvalidBase64Sequence", @"The characters '{0}' at offset {1} are not a valid Base64 sequence."); 336internal static string @XmlInvalidBinHexLength => GetResourceString("XmlInvalidBinHexLength", @"BinHex sequence length ({0}) not valid. Must be a multiple of 2."); 338internal static string @XmlInvalidBinHexSequence => GetResourceString("XmlInvalidBinHexSequence", @"The characters '{0}' at offset {1} are not a valid BinHex sequence."); 340internal static string @XmlInvalidHighSurrogate => GetResourceString("XmlInvalidHighSurrogate", @"High surrogate char '0x{0}' not valid. High surrogate chars range from 0xD800 to 0xDBFF."); 342internal static string @XmlInvalidLowSurrogate => GetResourceString("XmlInvalidLowSurrogate", @"Low surrogate char '0x{0}' not valid. Low surrogate chars range from 0xDC00 to 0xDFFF."); 344internal static string @XmlInvalidSurrogate => GetResourceString("XmlInvalidSurrogate", @"Surrogate char '0x{0}' not valid. Surrogate chars range from 0x10000 to 0x10FFFF."); 346internal static string @InvalidLocalNameEmpty => GetResourceString("InvalidLocalNameEmpty", @"The empty string is not a valid local name."); 348internal static string @XmlArrayTooSmall => GetResourceString("XmlArrayTooSmall", @"Array too small."); 350internal static string @XmlArrayTooSmallInput => GetResourceString("XmlArrayTooSmallInput", @"Array too small. Length of available data must be at least {0}."); 352internal static string @XmlBadBOM => GetResourceString("XmlBadBOM", @"Unrecognized Byte Order Mark."); 354internal static string @XmlMaxNameTableCharCountExceeded => GetResourceString("XmlMaxNameTableCharCountExceeded", @"The maximum nametable character count quota ({0}) has been exceeded while reading XML data. The nametable is a data structure used to store strings encountered during XML processing - long XML documents with non-repeating element names, attribute names and attribute values may trigger this quota. This quota may be increased by changing the MaxNameTableCharCount property on the XmlDictionaryReaderQuotas object used when creating the XML reader."); 356internal static string @XmlBase64DataExpected => GetResourceString("XmlBase64DataExpected", @"Base64 encoded data expected. Found {0}."); 358internal static string @XmlCDATAInvalidAtTopLevel => GetResourceString("XmlCDATAInvalidAtTopLevel", @"CData elements not valid at top level of an XML document."); 360internal static string @XmlCloseCData => GetResourceString("XmlCloseCData", @"']]>' not valid in text node content."); 362internal static string @XmlConversionOverflow => GetResourceString("XmlConversionOverflow", @"The value '{0}' cannot be represented with the type '{1}'."); 364internal static string @XmlDeclarationRequired => GetResourceString("XmlDeclarationRequired", @"An XML declaration with an encoding is required for all non UTF-8 documents."); 366internal static string @XmlDeclMissingVersion => GetResourceString("XmlDeclMissingVersion", @"Version not found in XML declaration."); 368internal static string @XmlDeclMissing => GetResourceString("XmlDeclMissing", @"An XML declaration is required for all non UTF-8 documents."); 370internal static string @XmlDeclNotFirst => GetResourceString("XmlDeclNotFirst", @"No characters can appear before the XML declaration."); 372internal static string @XmlDictionaryStringIDRange => GetResourceString("XmlDictionaryStringIDRange", @"XmlDictionaryString IDs must be in the range from {0} to {1}."); 374internal static string @XmlDictionaryStringIDUndefinedSession => GetResourceString("XmlDictionaryStringIDUndefinedSession", @"XmlDictionaryString ID {0} not defined in the XmlBinaryReaderSession."); 376internal static string @XmlDictionaryStringIDUndefinedStatic => GetResourceString("XmlDictionaryStringIDUndefinedStatic", @"XmlDictionaryString ID {0} not defined in the static dictionary."); 378internal static string @XmlDuplicateAttribute => GetResourceString("XmlDuplicateAttribute", @"Duplicate attribute found. Both '{0}' and '{1}' are from the namespace '{2}'."); 380internal static string @XmlEmptyNamespaceRequiresNullPrefix => GetResourceString("XmlEmptyNamespaceRequiresNullPrefix", @"The empty namespace requires a null or empty prefix."); 382internal static string @XmlEncodingMismatch => GetResourceString("XmlEncodingMismatch", @"The encoding in the declaration '{0}' does not match the encoding of the document '{1}'."); 384internal static string @XmlEncodingNotSupported => GetResourceString("XmlEncodingNotSupported", @"XML encoding not supported."); 386internal static string @XmlEndElementExpected => GetResourceString("XmlEndElementExpected", @"End element '{0}' from namespace '{1}' expected. Found {2}."); 388internal static string @XmlEndElementNoOpenNodes => GetResourceString("XmlEndElementNoOpenNodes", @"No corresponding start element is open."); 390internal static string @XmlExpectedEncoding => GetResourceString("XmlExpectedEncoding", @"The expected encoding '{0}' does not match the actual encoding '{1}'."); 392internal static string @XmlFoundCData => GetResourceString("XmlFoundCData", @"cdata '{0}'"); 394internal static string @XmlFoundComment => GetResourceString("XmlFoundComment", @"comment '{0}'"); 396internal static string @XmlFoundElement => GetResourceString("XmlFoundElement", @"element '{0}' from namespace '{1}'"); 398internal static string @XmlFoundEndElement => GetResourceString("XmlFoundEndElement", @"end element '{0}' from namespace '{1}'"); 400internal static string @XmlFoundEndOfFile => GetResourceString("XmlFoundEndOfFile", @"end of file"); 402internal static string @XmlFoundNodeType => GetResourceString("XmlFoundNodeType", @"node {0}"); 404internal static string @XmlFoundText => GetResourceString("XmlFoundText", @"text '{0}'"); 406internal static string @XmlFullStartElementExpected => GetResourceString("XmlFullStartElementExpected", @"Non-empty start element expected. Found {0}."); 408internal static string @XmlFullStartElementLocalNameNsExpected => GetResourceString("XmlFullStartElementLocalNameNsExpected", @"Non-empty start element '{0}' from namespace '{1}' expected. Found {2}."); 410internal static string @XmlFullStartElementNameExpected => GetResourceString("XmlFullStartElementNameExpected", @"Non-empty start element '{0}' expected. Found {1}."); 412internal static string @XmlIDDefined => GetResourceString("XmlIDDefined", @"ID already defined."); 414internal static string @XmlKeyAlreadyExists => GetResourceString("XmlKeyAlreadyExists", @"The specified key already exists in the dictionary."); 416internal static string @XmlIllegalOutsideRoot => GetResourceString("XmlIllegalOutsideRoot", @"Text cannot be written outside the root element."); 418internal static string @XmlInvalidBytes => GetResourceString("XmlInvalidBytes", @"Invalid byte encoding."); 420internal static string @XmlInvalidCharRef => GetResourceString("XmlInvalidCharRef", @"Character reference not valid."); 422internal static string @XmlInvalidCommentChars => GetResourceString("XmlInvalidCommentChars", @"XML comments cannot contain '--' or end with '-'."); 424internal static string @XmlInvalidDeclaration => GetResourceString("XmlInvalidDeclaration", @"XML declaration can only be written at the beginning of the document."); 426internal static string @XmlInvalidDepth => GetResourceString("XmlInvalidDepth", @"Cannot call '{0}' while Depth is '{1}'."); 428internal static string @XmlInvalidEncoding_UTF8 => GetResourceString("XmlInvalidEncoding_UTF8", @"XML encoding must be 'UTF-8'."); 430internal static string @XmlInvalidFFFE => GetResourceString("XmlInvalidFFFE", @"Characters with hexadecimal values 0xFFFE and 0xFFFF are not valid."); 432internal static string @XmlInvalidFormat => GetResourceString("XmlInvalidFormat", @"The input source is not correctly formatted."); 434internal static string @XmlInvalidID => GetResourceString("XmlInvalidID", @"ID must be >"); 436internal static string @XmlInvalidOperation => GetResourceString("XmlInvalidOperation", @"The reader cannot be advanced."); 438internal static string @XmlInvalidPrefixState => GetResourceString("XmlInvalidPrefixState", @"A prefix cannot be defined while WriteState is '{0}'."); 440internal static string @XmlInvalidQualifiedName => GetResourceString("XmlInvalidQualifiedName", @"Expected XML qualified name. Found '{0}'."); 442internal static string @XmlInvalidRootData => GetResourceString("XmlInvalidRootData", @"The data at the root level is invalid."); 444internal static string @XmlInvalidStandalone => GetResourceString("XmlInvalidStandalone", @"'standalone' value in declaration must be 'yes' or 'no'."); 446internal static string @XmlInvalidUniqueId => GetResourceString("XmlInvalidUniqueId", @"UniqueId cannot be zero length."); 448internal static string @XmlInvalidUTF8Bytes => GetResourceString("XmlInvalidUTF8Bytes", @"'{0}' contains invalid UTF-8 bytes."); 450internal static string @XmlInvalidVersion => GetResourceString("XmlInvalidVersion", @"XML version must be '1.0'."); 452internal static string @XmlInvalidWriteState => GetResourceString("XmlInvalidWriteState", @"'{0}' cannot be called while WriteState is '{1}'."); 454internal static string @XmlInvalidXmlByte => GetResourceString("XmlInvalidXmlByte", @"The byte 0x{0} is not valid at this location."); 456internal static string @XmlInvalidXmlSpace => GetResourceString("XmlInvalidXmlSpace", @"'{0}' is not a valid xml:space value. Valid values are 'default' and 'preserve'."); 458internal static string @XmlLineInfo => GetResourceString("XmlLineInfo", @"Line {0}, position {1}."); 460internal static string @XmlMalformedDecl => GetResourceString("XmlMalformedDecl", @"Malformed XML declaration."); 462internal static string @XmlMaxArrayLengthExceeded => GetResourceString("XmlMaxArrayLengthExceeded", @"The maximum array length quota ({0}) has been exceeded while reading XML data. This quota may be increased by changing the MaxArrayLength property on the XmlDictionaryReaderQuotas object used when creating the XML reader."); 464internal static string @XmlMaxArrayLengthOrMaxItemsQuotaExceeded => GetResourceString("XmlMaxArrayLengthOrMaxItemsQuotaExceeded", @"The maximum array length quota ({0}) or the maximum items in object graph quota has been exceeded while reading XML data. These quotas may be increased by changing the MaxArrayLength property on XmlDictionaryReaderQuotas or the MaxItemsInObjectGraph setting."); 466internal static string @XmlMaxBytesPerReadExceeded => GetResourceString("XmlMaxBytesPerReadExceeded", @"The 'maximum bytes per Read operation' quota ({0}) has been exceeded while reading XML data. Long element start tags (consisting of the element name, attribute names and attribute values) may trigger this quota. This quota may be increased by changing the MaxBytesPerRead property on the XmlDictionaryReaderQuotas object used when creating the XML reader."); 468internal static string @XmlMaxDepthExceeded => GetResourceString("XmlMaxDepthExceeded", @"The maximum read depth ({0}) has been exceeded because XML data being read has more levels of nesting than is allowed by the quota. This quota may be increased by changing the MaxDepth property on the XmlDictionaryReaderQuotas object used when creating the XML reader."); 470internal static string @XmlMaxStringContentLengthExceeded => GetResourceString("XmlMaxStringContentLengthExceeded", @"The maximum string content length quota ({0}) has been exceeded while reading XML data. This quota may be increased by changing the MaxStringContentLength property on the XmlDictionaryReaderQuotas object used when creating the XML reader."); 472internal static string @XmlMethodNotSupported => GetResourceString("XmlMethodNotSupported", @"This XmlWriter implementation does not support the '{0}' method."); 474internal static string @XmlMissingLowSurrogate => GetResourceString("XmlMissingLowSurrogate", @"The surrogate pair is invalid. Missing a low surrogate character."); 476internal static string @XmlMultipleRootElements => GetResourceString("XmlMultipleRootElements", @"There are multiple root elements."); 478internal static string @XmlNamespaceNotFound => GetResourceString("XmlNamespaceNotFound", @"The namespace '{0}' is not defined."); 480internal static string @XmlNestedArraysNotSupported => GetResourceString("XmlNestedArraysNotSupported", @"Nested arrays are not supported."); 482internal static string @XmlNoRootElement => GetResourceString("XmlNoRootElement", @"The document does not have a root element."); 484internal static string @XmlOnlyOneRoot => GetResourceString("XmlOnlyOneRoot", @"Only one root element is permitted per document."); 486internal static string @XmlOnlyWhitespace => GetResourceString("XmlOnlyWhitespace", @"Only whitespace characters can be written with this method."); 488internal static string @XmlOnlySingleValue => GetResourceString("XmlOnlySingleValue", @"Only a single typed value may be written inside an attribute or content."); 490internal static string @XmlPrefixBoundToNamespace => GetResourceString("XmlPrefixBoundToNamespace", @"The prefix '{0}' is bound to the namespace '{1}' and cannot be changed to '{2}'."); 492internal static string @XmlProcessingInstructionNotSupported => GetResourceString("XmlProcessingInstructionNotSupported", @"Processing instructions (other than the XML declaration) and DTDs are not supported."); 494internal static string @XmlReservedPrefix => GetResourceString("XmlReservedPrefix", @"Prefixes beginning with 'xml' (regardless of casing) are reserved for use by XML."); 496internal static string @XmlSpaceBetweenAttributes => GetResourceString("XmlSpaceBetweenAttributes", @"Whitespace must appear between attributes."); 498internal static string @XmlSpecificBindingNamespace => GetResourceString("XmlSpecificBindingNamespace", @"The namespace '{1}' can only be bound to the prefix '{0}'."); 500internal static string @XmlSpecificBindingPrefix => GetResourceString("XmlSpecificBindingPrefix", @"The prefix '{0}' can only be bound to the namespace '{1}'."); 502internal static string @XmlStartElementLocalNameNsExpected => GetResourceString("XmlStartElementLocalNameNsExpected", @"Start element '{0}' from namespace '{1}' expected. Found {2}."); 504internal static string @XmlStartElementNameExpected => GetResourceString("XmlStartElementNameExpected", @"Start element '{0}' expected. Found {1}."); 506internal static string @XmlTagMismatch => GetResourceString("XmlTagMismatch", @"Start element '{0}' does not match end element '{1}'."); 508internal static string @XmlTokenExpected => GetResourceString("XmlTokenExpected", @"The token '{0}' was expected but found '{1}'."); 510internal static string @XmlUndefinedPrefix => GetResourceString("XmlUndefinedPrefix", @"The prefix '{0}' is not defined."); 512internal static string @XmlUnexpectedEndElement => GetResourceString("XmlUnexpectedEndElement", @"No matching start tag for end element."); 514internal static string @XmlUnexpectedEndOfFile => GetResourceString("XmlUnexpectedEndOfFile", @"Unexpected end of file. Following elements are not closed: {0}."); 516internal static string @XmlWriterClosed => GetResourceString("XmlWriterClosed", @"The XmlWriter is closed."); 518internal static string @XmlObjectAssignedToIncompatibleInterface => GetResourceString("XmlObjectAssignedToIncompatibleInterface", @"'{0}' is an XML type and cannot be serialized when assigned to an interface type that does not implement IXmlSerializable ('{1}'.)"); 520internal static string @CollectionAssignedToIncompatibleInterface => GetResourceString("CollectionAssignedToIncompatibleInterface", @"'{0}' is a collection type and cannot be serialized when assigned to an interface type that does not implement IEnumerable ('{1}'.)"); 522internal static string @JsonInvalidBytes => GetResourceString("JsonInvalidBytes", @"Invalid byte encoding."); 524internal static string @JsonDuplicateMemberNames => GetResourceString("JsonDuplicateMemberNames", @"The data contract type '{0}' is not serializable with DataContractJsonSerializer because the data member '{1}' is duplicated in its type hierarchy."); 526internal static string @JsonUnsupportedForIsReference => GetResourceString("JsonUnsupportedForIsReference", @"The type '{0}' cannot be serialized to JSON because its IsReference setting is '{1}'. The JSON format does not support references because there is no standardized format for representing references. To enable serialization, disable the IsReference setting on the type or an appropriate parent class of the type."); 528internal static string @SerializationCodeIsMissingForType => GetResourceString("SerializationCodeIsMissingForType", @"Type '{0}' cannot be serialized, serialization code for the type is missing. Consult the SDK documentation for adding it as a root serialization type."); 530internal static string @InvalidXmlDeserializingExtensionData => GetResourceString("InvalidXmlDeserializingExtensionData", @"The XML encountered when deserializing extension data is invalid."); 532internal static string @InvalidStateInExtensionDataReader => GetResourceString("InvalidStateInExtensionDataReader", @"An internal error has occurred. ExtensionDataReader is in an invalid state."); 534internal static string @JsonTypeNotSupportedByDataContractJsonSerializer => GetResourceString("JsonTypeNotSupportedByDataContractJsonSerializer", @"DataContractJsonSerializer does not support objects of type '{0}'."); 536internal static string @GetOnlyCollectionMustHaveAddMethod => GetResourceString("GetOnlyCollectionMustHaveAddMethod", @"Collection interface type '{0}' is being used as a get-only property and does not have an Add method. Consider adding a setter to the property or using a collection data contract that does have an Add method - for example IList or ICollection<T>."); 538internal static string @JsonUnexpectedAttributeValue => GetResourceString("JsonUnexpectedAttributeValue", @"The attribute 'type' must have one of the following strings as its values: 'string', 'number', 'array', 'object', 'null', or 'boolean'. Encountered unexpected value '{0}'"); 540internal static string @JsonInvalidDateTimeString => GetResourceString("JsonInvalidDateTimeString", @"DateTime content '{0}' does not start with '{1}' and end with '{2}' as required for JSON."); 542internal static string @GenericCallbackException => GetResourceString("GenericCallbackException", @"A user callback threw an exception. Check the exception stack and inner exception to determine the callback that failed."); 544internal static string @JsonEncounteredUnexpectedCharacter => GetResourceString("JsonEncounteredUnexpectedCharacter", @"Encountered unexpected character '{0}'."); 546internal static string @JsonOffsetExceedsBufferSize => GetResourceString("JsonOffsetExceedsBufferSize", @"The specified offset exceeds the buffer size ({0} bytes)."); 548internal static string @JsonSizeExceedsRemainingBufferSpace => GetResourceString("JsonSizeExceedsRemainingBufferSpace", @"The specified size exceeds the remaining buffer space ('{0}' bytes)."); 550internal static string @InvalidCharacterEncountered => GetResourceString("InvalidCharacterEncountered", @"Encountered invalid character '{0}'."); 552internal static string @JsonInvalidFFFE => GetResourceString("JsonInvalidFFFE", @"Characters with hexadecimal values 0xFFFE and 0xFFFF are not valid."); 554internal static string @JsonDateTimeOutOfRange => GetResourceString("JsonDateTimeOutOfRange", @"DateTime values that are greater than DateTime.MaxValue or smaller than DateTime.MinValue when converted to UTC cannot be serialized to JSON."); 556internal static string @JsonWriteArrayNotSupported => GetResourceString("JsonWriteArrayNotSupported", @"To write JSON arrays, use XML writer methods to write the attribute type='array' followed by methods like WriteStartElement (with the local name 'item'), WriteAttributeString, and WriteEndElement to write the JSON array items."); 558internal static string @JsonMethodNotSupported => GetResourceString("JsonMethodNotSupported", @"This XmlDictionaryWriter implementation does not support the '{0}' method."); 560internal static string @JsonNoMatchingStartAttribute => GetResourceString("JsonNoMatchingStartAttribute", @"There is no open attribute."); 562internal static string @JsonNamespaceMustBeEmpty => GetResourceString("JsonNamespaceMustBeEmpty", @"Encountered unexpected namespace '{0}'. The namespace must be empty."); 564internal static string @JsonEndElementNoOpenNodes => GetResourceString("JsonEndElementNoOpenNodes", @"No corresponding start element is open."); 566internal static string @JsonOpenAttributeMustBeClosedFirst => GetResourceString("JsonOpenAttributeMustBeClosedFirst", @"Cannot call {0} while an attribute is being written."); 568internal static string @JsonMustSpecifyDataType => GetResourceString("JsonMustSpecifyDataType", @"You must write an attribute '{0}'='{1}' after writing the attribute with local name '{2}'."); 570internal static string @JsonXmlProcessingInstructionNotSupported => GetResourceString("JsonXmlProcessingInstructionNotSupported", @"Processing instructions (other than the XML declaration) are not supported."); 572internal static string @JsonXmlInvalidDeclaration => GetResourceString("JsonXmlInvalidDeclaration", @"XML declaration can only be written at the beginning of the document."); 574internal static string @JsonInvalidLocalNameEmpty => GetResourceString("JsonInvalidLocalNameEmpty", @"The empty string is not a valid local name in JSON."); 576internal static string @JsonPrefixMustBeNullOrEmpty => GetResourceString("JsonPrefixMustBeNullOrEmpty", @"Encountered unexpected prefix '{0}'. The prefix must be null or empty."); 578internal static string @JsonAttributeMustHaveElement => GetResourceString("JsonAttributeMustHaveElement", @"WriteStartElement must be called at least once before WriteStartAttribute may be called."); 580internal static string @JsonAttributeAlreadyWritten => GetResourceString("JsonAttributeAlreadyWritten", @"Cannot write attribute with local name '{0}' multiple times."); 582internal static string @JsonServerTypeSpecifiedForInvalidDataType => GetResourceString("JsonServerTypeSpecifiedForInvalidDataType", @"Attempted to write an attribute with local name '{0}' after writing the attribute '{1}'='{2}'. An attribute with local name '{0}' may be written only after writing the attribute '{1}'='{3}'."); 584internal static string @JsonUnexpectedAttributeLocalName => GetResourceString("JsonUnexpectedAttributeLocalName", @"Encountered unexpected attribute local name '{0}'. 'type' and '__type' are the only allowed local names for attributes. 'type' can be used to influence how data is written; its valid values are 'object', 'string', 'number', 'null', 'boolean', and 'array'. '__type' can be used to provide type hint information to the writer."); 586internal static string @JsonInvalidWriteState => GetResourceString("JsonInvalidWriteState", @"'{0}' cannot be called while WriteState is '{1}'."); 588internal static string @JsonMultipleRootElementsNotAllowedOnWriter => GetResourceString("JsonMultipleRootElementsNotAllowedOnWriter", @"This XmlDictionaryWriter implementation does not support the writing of multiple root elements."); 590internal static string @JsonInvalidRootElementName => GetResourceString("JsonInvalidRootElementName", @"Encountered invalid root element name '{0}'. '{1}' is the only allowed root element name."); 592internal static string @JsonNodeTypeArrayOrObjectNotSpecified => GetResourceString("JsonNodeTypeArrayOrObjectNotSpecified", @"WriteStartElement cannot be called immediately after WriteStartElement without writing the 'type'='array' or 'type='object' attribute."); 594internal static string @JsonInvalidItemNameForArrayElement => GetResourceString("JsonInvalidItemNameForArrayElement", @"Encountered unexpected element local name '{0}' for item in collection. '{1}' is the only valid local name for elements in a collection."); 596internal static string @JsonInvalidStartElementCall => GetResourceString("JsonInvalidStartElementCall", @"WriteStartElement can be called at only the start of a document or immediately after calling WriteEndElement."); 598internal static string @JsonOnlyWhitespace => GetResourceString("JsonOnlyWhitespace", @"Unexpected character '{0}'. '{1}' can write only whitespace characters."); 600internal static string @JsonWriterClosed => GetResourceString("JsonWriterClosed", @"The writer is closed."); 602internal static string @JsonCannotWriteStandaloneTextAfterQuotedText => GetResourceString("JsonCannotWriteStandaloneTextAfterQuotedText", @"Cannot write a CLR value that maps to number, array, object, true, false or null in JSON after a string value has been written."); 604internal static string @JsonMustUseWriteStringForWritingAttributeValues => GetResourceString("JsonMustUseWriteStringForWritingAttributeValues", @"To write attribute values with this XmlDictionaryWriter implementation, you must write either string or char[] values."); 606internal static string @JsonInvalidDataTypeSpecifiedForServerType => GetResourceString("JsonInvalidDataTypeSpecifiedForServerType", @"Attempted to write an attribute '{0}'='{1}' after writing the attribute with local name '{2}'. The attribute with local name '{2}' is only valid with an attribute '{0}'='{3}'."); 608internal static string @JsonInvalidMethodBetweenStartEndAttribute => GetResourceString("JsonInvalidMethodBetweenStartEndAttribute", @"Cannot write content while an attribute is being written."); 610internal static string @JsonCannotWriteTextAfterNonTextAttribute => GetResourceString("JsonCannotWriteTextAfterNonTextAttribute", @"Attempted to write text after writing attribute type='{0}'. Text may be written only after the attributes type='number', type='boolean', or type='string'."); 612internal static string @JsonNestedArraysNotSupported => GetResourceString("JsonNestedArraysNotSupported", @"Nested arrays are not supported."); 614internal static string @JsonEncodingNotSupported => GetResourceString("JsonEncodingNotSupported", @"Encoding not supported in JSON. UTF-8, Unicode, and BigEndianUnicode are the only supported encodings."); 616internal static string @JsonExpectedEncoding => GetResourceString("JsonExpectedEncoding", @"The expected encoding '{0}' does not match the actual encoding '{1}'."); 618internal static string @JsonUnexpectedEndOfFile => GetResourceString("JsonUnexpectedEndOfFile", @"Unexpected end of file."); 620internal static string @AssemblyNotFound => GetResourceString("AssemblyNotFound", @"Assembly '{0}' is not found."); 622internal static string @ClrTypeNotFound => GetResourceString("ClrTypeNotFound", @"The deserializer cannot load the type to deserialize because type '{1}' could not be found in assembly '{0}'. Check that the type being serialized has the same contract as the type being deserialized and the same assembly is used."); 624internal static string @AttributeNotFound => GetResourceString("AttributeNotFound", @"XML '{2}' '{3}:{4}' does not contain expected attribute '{0}:{1}'. The deserializer has no knowledge of which type to deserialize. Check that the type being serialized has the same contract as the type being deserialized."); 626internal static string @JsonDuplicateMemberInInput => GetResourceString("JsonDuplicateMemberInInput", @"The data contract type '{0}' cannot be deserialized because the data member '{1}' was found more than once in the input."); 628internal static string @JsonRequiredMembersNotFound => GetResourceString("JsonRequiredMembersNotFound", @"The data contract type '{0}' cannot be deserialized because the required data members '{1}' were not found."); 630internal static string @JsonOneRequiredMemberNotFound => GetResourceString("JsonOneRequiredMemberNotFound", @"The data contract type '{0}' cannot be deserialized because the required data member '{1}' was not found."); 632internal static string @EnumTypeNotSupportedByDataContractJsonSerializer => GetResourceString("EnumTypeNotSupportedByDataContractJsonSerializer", @"DataContractJsonSerializer does not support data members of type '{0}'. Consider using int, System.Object, or a concrete enum definition instead."); 634internal static string @KeyTypeCannotBeParsedInSimpleDictionary => GetResourceString("KeyTypeCannotBeParsedInSimpleDictionary", @"The dictionary of type '{0}' cannot be deserialized as a simple dictionary because its key type '{1}' does not have a public static Parse method."); 636internal static string @SurrogatesWithGetOnlyCollectionsNotSupportedSerDeser => GetResourceString("SurrogatesWithGetOnlyCollectionsNotSupportedSerDeser", @"Using surrogates with get-only collection properties is not supported. Consider removing the surrogate associated with '{0}'."); 638internal static string @FactoryObjectContainsSelfReference => GetResourceString("FactoryObjectContainsSelfReference", @"Object graph of type '{0}' with Id '{2}' contains a reference to itself. The object has been replaced with a new object of type '{1}' either because it implements IObjectReference or because it is surrogated. The serializer does not support fixing up the nested reference to the new object and cannot deserialize this object. Consider changing the object to remove the nested self-reference."); 640internal static string @RecursiveCollectionType => GetResourceString("RecursiveCollectionType", @"Type '{0}' is a recursive collection data contract which is not supported. Consider modifying the definition of collection '{0}' to remove references to itself."); 642internal static string @UnknownXmlType => GetResourceString("UnknownXmlType", @"Type '{0}' is not a valid XML type."); 644internal static string @DupContractInDataContractSet => GetResourceString("DupContractInDataContractSet", @"DataContract with name '{0}' and namespace '{1}' cannot be added to DataContractSet since another contract with the same data contract name is already present and the contracts are not equivalent."); 646internal static string @DupTypeContractInDataContractSet => GetResourceString("DupTypeContractInDataContractSet", @"DataContract for type '{0}' cannot be added to DataContractSet since type '{1}' with the same data contract name '{2}' in namespace '{3}' is already present and the contracts are not equivalent."); 648internal static string @GenericTypeNameMismatch => GetResourceString("GenericTypeNameMismatch", @"DataContract name '{0}' from namespace '{1}' does not match the generic name '{2}' from namespace '{3}'."); 650internal static string @GenericTypeNotExportable => GetResourceString("GenericTypeNotExportable", @"Type '{0}' cannot be exported as a schema type because it is an open generic type. You can only export a generic type if all its generic parameter types are actual types."); 652internal static string @CannotExportNullAssembly => GetResourceString("CannotExportNullAssembly", @"Cannot export null assembly provided via '{0}' parameter."); 654internal static string @CannotExportNullKnownType => GetResourceString("CannotExportNullKnownType", @"Cannot export null type provided via KnownTypesCollection."); 656internal static string @CannotExportNullType => GetResourceString("CannotExportNullType", @"Cannot export null type provided via '{0}' parameter."); 658internal static string @QueryGeneratorPathToMemberNotFound => GetResourceString("QueryGeneratorPathToMemberNotFound", @"Cannot find a path to the member when generating the XPath query."); 660internal static string @XmlInvalidStream => GetResourceString("XmlInvalidStream", @"Stream returned by IStreamProvider cannot be null."); 662internal static string @ISerializableAssemblyNameSetToZero => GetResourceString("ISerializableAssemblyNameSetToZero", @"Type '{0}' has set its ISerializable assembly name to ""0"". ""0"" is an invalid assembly name. Consider using the full name of mscorlib if you would like your type to be deserialized in that assembly."); 664internal static string @RequiresClassDataContractToSetIsISerializable => GetResourceString("RequiresClassDataContractToSetIsISerializable", @"Only classes can be generated as ISerializable."); 666internal static string @ISerializableCannotHaveDataContract => GetResourceString("ISerializableCannotHaveDataContract", @"Type '{0}' cannot be ISerializable and have DataContractAttribute attribute."); 668internal static string @SerializationInfo_ConstructorNotFound => GetResourceString("SerializationInfo_ConstructorNotFound", @"The constructor with parameters (SerializationInfo, StreamingContext) is not found in ISerializable type '{0}'."); 670internal static string @ChangingFullTypeNameNotSupported => GetResourceString("ChangingFullTypeNameNotSupported", @"DataContractJsonSerializer does not support the setting of the FullTypeName of the object to be serialized to a value other than the default FullTypeName. Attempted to serialize object with full type name '{0}' and default full type name '{1}'."); 672internal static string @InterfaceTypeCannotBeCreated => GetResourceString("InterfaceTypeCannotBeCreated", @"Interface type '{0}' cannot be created. Consider replacing with a non-interface serializable type."); 674internal static string @ArraySizeAttributeIncorrect => GetResourceString("ArraySizeAttributeIncorrect", @"Array Size '{0}' is not equal to the number of elements found '{1}'."); 676internal static string @DuplicateExtensionDataSetMethod => GetResourceString("DuplicateExtensionDataSetMethod", @"Invalid IExtensibleDataObject. Both '{0}' and '{1}' in type '{2}' provide property setter."); 678internal static string @ExtensionDataSetMustReturnVoid => GetResourceString("ExtensionDataSetMustReturnVoid", @"IExtensibleDataObject property setter '{1}' in type '{0}' must return void."); 680internal static string @ExtensionDataSetParameterInvalid => GetResourceString("ExtensionDataSetParameterInvalid", @"IExtensibleDataObject property setter '{1}' in type '{0}' must have a single parameter of type '{2}'."); 682internal static string @OnlyDataContractTypesCanHaveExtensionData => GetResourceString("OnlyDataContractTypesCanHaveExtensionData", @"Type '{0}' does not have DataContractAttribute attribute and therefore cannot support IExtensibleDataObject."); 684internal static string @ParseJsonNumberReturnInvalidNumber => GetResourceString("ParseJsonNumberReturnInvalidNumber", @"JsonObjectDataContract.ParseJsonNumber shouldn't return a TypeCode that we're not expecting."); 686internal static string @CouldNotReadSerializationSchema => GetResourceString("CouldNotReadSerializationSchema", @"An internal error has occurred. Could not load serialization schema. Consider providing schema with namespace '{0}'."); 688internal static string @MissingSchemaType => GetResourceString("MissingSchemaType", @"Schema type '{0}' returned by CLR type '{1}' is not found in the XmlSchemaSet."); 690internal static string @InvalidReturnSchemaOnGetSchemaMethod => GetResourceString("InvalidReturnSchemaOnGetSchemaMethod", @"Method '{0}.GetSchema()' must return a schema with a valid Id."); 692internal static string @PlatformNotSupported_MtomEncoding => GetResourceString("PlatformNotSupported_MtomEncoding", @"The Message Transmission Optimization Mechanism (MTOM) message encoding is not supported on this platform."); 694internal static string @PlatformNotSupported_NetDataContractSerializer => GetResourceString("PlatformNotSupported_NetDataContractSerializer", @"System.Runtime.Serialization.NetDataContractSerializer is not supported on this platform."); 696internal static string @PlatformNotSupported_IDataContractSurrogate => GetResourceString("PlatformNotSupported_IDataContractSurrogate", @"The implementation of the function requires System.Runtime.Serialization.IDataContractSurrogate which is not supported on this platform."); 698internal static string @PlatformNotSupported_SchemaImporter => GetResourceString("PlatformNotSupported_SchemaImporter", @"The implementation of the function requires System.Runtime.Serialization.SchemaImporter which is not supported on this platform."); 700internal static string @FactoryTypeNotISerializable => GetResourceString("FactoryTypeNotISerializable", @"Factory type '{0}' for ISerializable type '{1}' must also be ISerializable."); 702internal static string @XmlCanonicalizationStarted => GetResourceString("XmlCanonicalizationStarted", @"Canonicalization already started."); 704internal static string @XmlCanonicalizationNotStarted => GetResourceString("XmlCanonicalizationNotStarted", @"Canonicalization not started."); 706internal static string @CombinedPrefixNSLength => GetResourceString("CombinedPrefixNSLength", @"The combined length of the prefix and namespace must not be greater than {0}."); 708internal static string @InvalidInclusivePrefixListCollection => GetResourceString("InvalidInclusivePrefixListCollection", @"The inclusive namespace prefix collection cannot contain null as one of the items."); 710internal static string @CannotSetTwice => GetResourceString("CannotSetTwice", @"Cannot set option twice."); 712internal static string @MustBeGreaterThanZero => GetResourceString("MustBeGreaterThanZero", @"'{0}' must be greater than 0."); 714internal static string @ReadOnlyClassDeserialization => GetResourceString("ReadOnlyClassDeserialization", @"{0} The class cannot be deserialized."); 716internal static string @ReadOnlyCollectionDeserialization => GetResourceString("ReadOnlyCollectionDeserialization", @"Collection type '{0}' cannot be deserialized since it"); 718internal static string @UnknownNullType => GetResourceString("UnknownNullType", @"Unknown Type for null value"); 720internal static string @AmbiguousReferencedTypes1 => GetResourceString("AmbiguousReferencedTypes1", @"List of referenced types contains more than one type with same data contract name. Need to exclude all but one of the following types. Only matching types can be valid references: {0}"); 722internal static string @AmbiguousReferencedTypes3 => GetResourceString("AmbiguousReferencedTypes3", @"List of referenced types contains more than one type with data contract name '{0}' in namespace '{1}'. Need to exclude all but one of the following types. Only matching types can be valid references: {2}"); 724internal static string @AmbiguousReferencedCollectionTypes1 => GetResourceString("AmbiguousReferencedCollectionTypes1", @"List of referenced collection types contains more than one type with same data contract name. Include only one of the following types. Only matching types can be valid references: {0}"); 726internal static string @AmbiguousReferencedCollectionTypes3 => GetResourceString("AmbiguousReferencedCollectionTypes3", @"List of referenced collection types contains more than one type with data contract name '{0}' in namespace '{1}'. Include only one of the following types. Only matching types can be valid references: {2}"); 728internal static string @ReferencedCollectionTypesCannotContainNull => GetResourceString("ReferencedCollectionTypesCannotContainNull", @"ReferencedCollectionTypes specified via ImportOptions must contain valid types. Cannot contain null."); 730internal static string @ReferencedTypeMatchingMessage => GetResourceString("ReferencedTypeMatchingMessage", @"(matching)"); 732internal static string @ReferencedTypeNotMatchingMessage => GetResourceString("ReferencedTypeNotMatchingMessage", @"(not matching)"); 734internal static string @ReferencedTypesCannotContainNull => GetResourceString("ReferencedTypesCannotContainNull", @"ReferencedTypes specified via ImportOptions must contain valid types. Cannot contain null."); 736internal static string @SurrogatesWithGetOnlyCollectionsNotSupported => GetResourceString("SurrogatesWithGetOnlyCollectionsNotSupported", @"Using surrogates with get-only collection properties is not supported. Consider removing the surrogate associated with '{0}' or adding a setter to '{1}.{2}'."); 738internal static string @AbstractElementNotSupported => GetResourceString("AbstractElementNotSupported", @"The element cannot have 'abstract' set to 'true'."); 740internal static string @AbstractTypeNotSupported => GetResourceString("AbstractTypeNotSupported", @"The type cannot have 'abstract' set to 'true'."); 742internal static string @AnnotationAttributeNotFound => GetResourceString("AnnotationAttributeNotFound", @"Invalid '{0}' annotation in type '{1}' from namespace '{2}'. Attribute '{3}' not present."); 744internal static string @AnonymousTypeNotSupported => GetResourceString("AnonymousTypeNotSupported", @"Anonymous type in element '{0}' from namespace '{1}' is not supported."); 746internal static string @AnyAttributeNotSupported => GetResourceString("AnyAttributeNotSupported", @"'anyAttribute' is not supported."); 748internal static string @ArrayItemFormMustBe => GetResourceString("ArrayItemFormMustBe", @"Form for element '{0}' must be qualified."); 750internal static string @ArrayTypeCannotBeImported => GetResourceString("ArrayTypeCannotBeImported", @"Array type '{0}' in namespace '{1}' cannot be imported. {2}"); 752internal static string @BaseTypeNotISerializable => GetResourceString("BaseTypeNotISerializable", @"One of its base types, '{0}' from namespace '{1}' is not ISerializable."); 754internal static string @CannotComputeUniqueName => GetResourceString("CannotComputeUniqueName", @"A unique name cannot be computed for '{0}' because there are already Int32.MaxValue types of with the same name."); 756internal static string @CannotHaveDuplicateAttributeNames => GetResourceString("CannotHaveDuplicateAttributeNames", @"The type contains two attributes with the same name '{0}'. Multiple attributes with the same name in one type are not supported."); 758internal static string @CannotHaveDuplicateElementNames => GetResourceString("CannotHaveDuplicateElementNames", @"The type contains two elements with the same name '{0}'. Multiple elements with the same name in one type are not supported because members marked with DataMemberAttribute attribute must have unique names."); 760internal static string @CannotImportInvalidSchemas => GetResourceString("CannotImportInvalidSchemas", @"Cannot import invalid schemas. Compilation on the XmlSchemaSet failed."); 762internal static string @CannotImportNullDataContractName => GetResourceString("CannotImportNullDataContractName", @"Cannot import type for null XmlQualifiedName specified via parameter."); 764internal static string @CannotImportNullSchema => GetResourceString("CannotImportNullSchema", @"Cannot import null XmlSchema contained in XmlSchemaSet specified via parameter."); 766internal static string @ComplexTypeRestrictionNotSupported => GetResourceString("ComplexTypeRestrictionNotSupported", @"An internal error has occurred. Could not load serialization schema. Consider providing schema with namespace '{0}'."); 768internal static string @DefaultOnElementNotSupported => GetResourceString("DefaultOnElementNotSupported", @"Default value on element '{0}' is not supported."); 770internal static string @DerivedTypeNotISerializable => GetResourceString("DerivedTypeNotISerializable", @"It is not ISerializable but its base type '{0}' in namespace '{1}' is ISerializable."); 772internal static string @ElementMaxOccursMustBe => GetResourceString("ElementMaxOccursMustBe", @"'maxOccurs' on element '{0}' must be 1."); 774internal static string @ElementMinOccursMustBe => GetResourceString("ElementMinOccursMustBe", @"'minOccurs' on element '{0}' must be 0 or 1."); 776internal static string @ElementRefOnLocalElementNotSupported => GetResourceString("ElementRefOnLocalElementNotSupported", @"Ref to element '{0}' in '{1}' namespace is not supported."); 778internal static string @EnumEnumerationFacetsMustHaveValue => GetResourceString("EnumEnumerationFacetsMustHaveValue", @"Enumeration facets without 'value' are not supported."); 780internal static string @EnumListInAnonymousTypeNotSupported => GetResourceString("EnumListInAnonymousTypeNotSupported", @"Anonymous type with <list> cannot be used to create Flags enumeration because it is not a valid enum type."); 782internal static string @EnumListMustContainAnonymousType => GetResourceString("EnumListMustContainAnonymousType", @"Simple type list must contain an anonymous type specifying enumeration facets."); 784internal static string @EnumOnlyEnumerationFacetsSupported => GetResourceString("EnumOnlyEnumerationFacetsSupported", @"Facets other than enumeration facets are not supported."); 786internal static string @EnumRestrictionInvalid => GetResourceString("EnumRestrictionInvalid", @"Anonymous type with <restriction> cannot be used to create Flags enumeration because it is not a valid enum type."); 788internal static string @EnumTypeCannotBeImported => GetResourceString("EnumTypeCannotBeImported", @"Enum type '{0}' in namespace '{1}' cannot be imported. {2}"); 790internal static string @EnumUnionInAnonymousTypeNotSupported => GetResourceString("EnumUnionInAnonymousTypeNotSupported", @"Anonymous type with <union>. cannot be used to create Flags enumeration because it is not a valid enum type."); 792internal static string @FixedOnElementNotSupported => GetResourceString("FixedOnElementNotSupported", @"Fixed value on element '{0}' is not supported."); 794internal static string @FormMustBeQualified => GetResourceString("FormMustBeQualified", @"Form on element '{0}' must be qualified."); 796internal static string @GenericAnnotationAttributeNotFound => GetResourceString("GenericAnnotationAttributeNotFound", @"Annotation for generic type '{0}' did not have attribute '{1}'."); 798internal static string @GenericAnnotationForNestedLevelMustBeIncreasing => GetResourceString("GenericAnnotationForNestedLevelMustBeIncreasing", @"Nested level on annotation elements '{0}' from namespace '{1}' for generic type '{2}' must be in increasing order."); 800internal static string @GenericAnnotationHasInvalidAttributeValue => GetResourceString("GenericAnnotationHasInvalidAttributeValue", @"Annotation element '{0}' from namespace '{1}' for generic type '{2}' has an invalid value '{3}' for attribute '{4}'. Expecting value to be of type '{5}'."); 802internal static string @GenericAnnotationHasInvalidElement => GetResourceString("GenericAnnotationHasInvalidElement", @"Annotation for generic type '{2}' has an invalid element '{0}' from namespace '{1}'."); 804internal static string @InvalidAnnotationExpectingText => GetResourceString("InvalidAnnotationExpectingText", @"Annotation '{0}' from namespace '{1}' has an invalid element '{2}' from namespace '{3}'. Expecting text."); 806internal static string @InvalidClassDerivation => GetResourceString("InvalidClassDerivation", @"Type '{0}' in namespace '{1}' cannot be used as the base type of a data contract type, because it itself does not have a data contract. Consider marking type '{0}' with the DataContractAttribute attribute."); 808internal static string @InvalidEmitDefaultAnnotation => GetResourceString("InvalidEmitDefaultAnnotation", @"Annotation for element {0} in type {1} from namespace {2} specifies EmitDefaultValue as 'true'. This requires the element to be either nillable or the element's type must be a value type."); 810internal static string @InvalidISerializableDerivation => GetResourceString("InvalidISerializableDerivation", @"Cannot import type '{0}' in namespace '{1}' as its base type because derived type is ISerializable but the base type is not ISerializable."); 812internal static string @InvalidKeyValueType => GetResourceString("InvalidKeyValueType", @"It is an invalid dictionary type. Element '{0}' must reference a complex type containing a sequence with two required elements. Either fix the schema or remove the IsDictionary annotation."); 814internal static string @InvalidKeyValueTypeNamespace => GetResourceString("InvalidKeyValueTypeNamespace", @"It is an invalid dictionary type since element '{0}' references a type from a different namespace '{1}'. Either fix the schema or remove the IsDictionary annotation."); 816internal static string @IsDictionaryFormattedIncorrectly => GetResourceString("IsDictionaryFormattedIncorrectly", @"'{0}' is an invalid value for IsDictionary annotation. {1}"); 818internal static string @IsValueTypeFormattedIncorrectly => GetResourceString("IsValueTypeFormattedIncorrectly", @"'{0}' is an invalid value for IsValueType annotation. {1}"); 820internal static string @ISerializableContainsMoreThanOneItems => GetResourceString("ISerializableContainsMoreThanOneItems", @"Its root sequence contains more than one particle."); 822internal static string @ISerializableDerivedContainsOneOrMoreItems => GetResourceString("ISerializableDerivedContainsOneOrMoreItems", @"Derived ISerializable types cannot contain any particles."); 824internal static string @ISerializableDoesNotContainAny => GetResourceString("ISerializableDoesNotContainAny", @"It does not contain root sequence with a wildcard element <any>."); 826internal static string @ISerializableMustRefFactoryTypeAttribute => GetResourceString("ISerializableMustRefFactoryTypeAttribute", @"It does not reference attribute '{0}' from namespace '{1}'."); 828internal static string @ISerializableTypeCannotBeImported => GetResourceString("ISerializableTypeCannotBeImported", @"ISerializable type '{0}' in namespace '{1}' cannot be imported. '{2}'"); 830internal static string @ISerializableWildcardMaxOccursMustBe => GetResourceString("ISerializableWildcardMaxOccursMustBe", @"'maxOccurs' on the wildcard element must be '{0}'."); 832internal static string @ISerializableWildcardMinOccursMustBe => GetResourceString("ISerializableWildcardMinOccursMustBe", @"'minOccurs' on the wildcard element must be '{0}'."); 834internal static string @ISerializableWildcardNamespaceInvalid => GetResourceString("ISerializableWildcardNamespaceInvalid", @"Namespace on the wildcard element must be '{0}'."); 836internal static string @ISerializableWildcardProcessContentsInvalid => GetResourceString("ISerializableWildcardProcessContentsInvalid", @"ProcessContents on the wildcard element must be '{0}'."); 838internal static string @MixedContentNotSupported => GetResourceString("MixedContentNotSupported", @"Complex type with mixed content is not supported."); 840internal static string @MustContainOnlyLocalElements => GetResourceString("MustContainOnlyLocalElements", @"The root sequence must contain only local elements. Group ref, choice, any and nested sequences are not supported."); 842internal static string @RedefineNotSupported => GetResourceString("RedefineNotSupported", @"Redefine is not supported."); 844internal static string @RootParticleMustBeSequence => GetResourceString("RootParticleMustBeSequence", @"The root particle must be a sequence."); 846internal static string @RootSequenceMaxOccursMustBe => GetResourceString("RootSequenceMaxOccursMustBe", @"'maxOccurs' on the root sequence must be 1."); 848internal static string @RootSequenceMustBeRequired => GetResourceString("RootSequenceMustBeRequired", @"'minOccurs' on the root sequence must be 1."); 850internal static string @SimpleContentNotSupported => GetResourceString("SimpleContentNotSupported", @"Complex types with simple content extension are not supported."); 852internal static string @SimpleTypeRestrictionDoesNotSpecifyBase => GetResourceString("SimpleTypeRestrictionDoesNotSpecifyBase", @"Simple type restriction must specify a base type."); 854internal static string @SimpleTypeUnionNotSupported => GetResourceString("SimpleTypeUnionNotSupported", @"Simple types with <union> content are not supported."); 856internal static string @SpecifiedTypeNotFoundInSchema => GetResourceString("SpecifiedTypeNotFoundInSchema", @"Invalid type specified. Type with name '{0}' not found in schema with namespace '{1}'."); 858internal static string @SubstitutionGroupOnElementNotSupported => GetResourceString("SubstitutionGroupOnElementNotSupported", @"Substitution group on element '{0}' is not supported."); 860internal static string @TopLevelElementRepresentsDifferentType => GetResourceString("TopLevelElementRepresentsDifferentType", @"The global element found in the schema with same name references a different type '{0}' in namespace '{1}'. Data contract types must have the same name as their root element name. Consider removing the global element or changing its type."); 862internal static string @TypeCannotBeImported => GetResourceString("TypeCannotBeImported", @"Type '{0}' in namespace '{1}' cannot be imported. {2}"); 864internal static string @TypeCannotBeImportedHowToFix => GetResourceString("TypeCannotBeImportedHowToFix", @"{0} Either change the schema so that the types can map to data contract types or use ImportXmlType or use a different serializer."); 866internal static string @TypeShouldNotContainAttributes => GetResourceString("TypeShouldNotContainAttributes", @"Attributes must be optional and from namespace '{0}'.");