Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DataContractSerializerSettings.cs
Go to the documentation of this file.
2using System.Xml;
3
5
7{
8 private int _maxItemsInObjectGraph = int.MaxValue;
9
10 public XmlDictionaryString? RootName { get; set; }
11
12 public XmlDictionaryString? RootNamespace { get; set; }
13
14 public IEnumerable<Type>? KnownTypes { get; set; }
15
17 {
18 get
19 {
21 }
22 set
23 {
25 }
26 }
27
28 public bool IgnoreExtensionDataObject { get; set; }
29
30 public bool PreserveObjectReferences { get; set; }
31
33
34 public bool SerializeReadOnlyTypes { get; set; }
35}