private XmlMappingSettings(bool defaultsCtor)
 {
     this.CollectionName = new XmlQualifiedName("table");
     this.ItemName       = "row";
     this.NullHandling   = XmlNullHandling.IncludeNilAttribute;
     this.TypeAnnotation = XmlTypeAnnotation.XmlSchema;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="XmlMappingSettings"/> class.
 /// </summary>
 public XmlMappingSettings()
 {
     this.CollectionName = Defaults.CollectionName;
     this.ItemName       = Defaults.ItemName;
     this.NullHandling   = Defaults.NullHandling;
     this.TypeAnnotation = Defaults.TypeAnnotation;
 }