//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
namespace System.Runtime.Serialization
{
using System.Collections.Generic;
using System.Xml;
///
/// Dummy documentation
///
public class DataContractSerializerSettings
{
private int maxItemsInObjectGraph = int.MaxValue;
///
/// 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 { return this.maxItemsInObjectGraph; }
set { this.maxItemsInObjectGraph = value; }
}
///
/// 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
///
public 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; }
}
}