// // Copyright (c) Microsoft Corporation. All rights reserved. // namespace System.Runtime.Serialization.Json { using System.Collections.Generic; using System.Xml; /// /// Dummy documentation /// public class DataContractJsonSerializerSettings { private int maxItemsInObjectGraph = int.MaxValue; /// /// Gets or sets Dummy documentation /// public string RootName { get; set; } /// /// Gets or sets Dummy documentation /// public IEnumerable KnownTypes { get; set; } /// /// Gets or sets Dummy documentation /// public int MaxItemsInObjectGraph { get { return this.maxItemsInObjectGraph; } set { this.maxItemsInObjectGraph = value; } } /// /// Gets or sets a value indicating whether Dummy documentation /// public bool IgnoreExtensionDataObject { get; set; } /// /// Gets or sets Dummy documentation /// public IDataContractSurrogate DataContractSurrogate { get; set; } /// /// Gets or sets Dummy documentation /// public EmitTypeInformation EmitTypeInformation { get; set; } /// /// Gets or sets Dummy documentation /// public DateTimeFormat DateTimeFormat { get; set; } /// /// Gets or sets a value indicating whether Dummy documentation /// public bool SerializeReadOnlyTypes { get; set; } /// /// Gets or sets a value indicating whether Dummy documentation /// public bool UseSimpleDictionaryFormat { get; set; } } }