10 writes to XmlDataType
System.Data (10)
fx\src\data\System\Data\DataColumn.cs (1)
589XmlDataType = null;
fx\src\data\System\Data\DataTable.cs (1)
432dc.XmlDataType = (string) info.GetValue(String.Format(formatProvider, "DataTable.DataColumn_{0}.XmlDataType", i), typeof(string));
fx\src\data\System\Data\XDRSchema.cs (1)
420column.XmlDataType = strType;
fx\src\data\System\Data\XMLSchema.cs (7)
1778column.XmlDataType = xsdType.SimpleTypeQualifiedName; 1782column.XmlDataType = strType; 1874column.XmlDataType = strType; 1990column.XmlDataType = xsdType.SimpleTypeQualifiedName; 1994column.XmlDataType = strType; 2150column.XmlDataType = xsdType.SimpleTypeQualifiedName; 2154column.XmlDataType = strType;
7 references to XmlDataType
System.Data (7)
fx\src\data\System\Data\DataTable.cs (1)
365info.AddValue(String.Format(formatProvider, "DataTable.DataColumn_{0}.XmlDataType", i), Columns[i].XmlDataType);
fx\src\data\System\Data\xmlsaver.cs (6)
181else if ((dt.Length == 0) || bImplementsInullable || ((dt == Keywords.XSD_ANYTYPE) && (col.XmlDataType != Keywords.XSD_ANYTYPE))|| (col.DataType == typeof(DateTimeOffset))) { 1112else if (col.XmlDataType != null && col.XmlDataType.Length != 0 && XSDSchema.IsXsdType(col.XmlDataType)) { 1113root.SetAttribute(keyword, XSDSchema.QualifiedName(col.XmlDataType)); 1140else if ((dt.Length == 0) || col.ImplementsINullable || ((dt == Keywords.XSD_ANYTYPE) && (col.XmlDataType != Keywords.XSD_ANYTYPE))) {