using System; using System.Collections.Generic; using System.Xml; using DataContractResolver = System.Runtime.Serialization.DataContractResolver; namespace Compat.Runtime.Serialization { public class DataContractSerializerSettings { /// /// Gets or sets Dummy documentation /// public XmlDictionaryString RootName { get; set; } /// /// Gets or sets Dummy documentation /// public XmlDictionaryString RootNamespace { get; set; } /// /// Gets or sets Dummy documentation /// public IEnumerable KnownTypes { get; set; } /// /// Gets or sets Dummy documentation /// public int MaxItemsInObjectGraph { get; set; } = int.MaxValue; /// /// Gets or sets a value indicating whether Dummy documentation /// public bool IgnoreExtensionDataObject { get; set; } /// /// Gets or sets a value indicating whether Dummy documentation /// public bool PreserveObjectReferences { get; set; } /// /// Gets or sets Dummy documentation /// internal IDataContractSurrogate DataContractSurrogate { get; set; } /// /// Gets or sets Dummy documentation /// public DataContractResolver DataContractResolver { get; set; } /// /// Gets or sets a value indicating whether Dummy documentation /// public bool SerializeReadOnlyTypes { get; set; } } }