12 writes to XmlDataType
System.Data.Common (12)
System\Data\DataColumn.cs (3)
560XmlDataType = null; 904XmlDataType = null; 1542clone.XmlDataType = XmlDataType;
System\Data\DataTable.cs (1)
469dc.XmlDataType = (string?)info.GetValue(string.Format(formatProvider, "DataTable.DataColumn_{0}.XmlDataType", i), typeof(string));
System\Data\XDRSchema.cs (1)
457column.XmlDataType = strType;
System\Data\XMLSchema.cs (7)
2058column.XmlDataType = xsdType.SimpleTypeQualifiedName; 2063column.XmlDataType = strType; 2167column.XmlDataType = strType; 2300column.XmlDataType = xsdType.SimpleTypeQualifiedName; 2305column.XmlDataType = strType; 2487column.XmlDataType = xsdType.SimpleTypeQualifiedName; 2492column.XmlDataType = strType;
9 references to XmlDataType
System.Data.Common (9)
System\Data\DataColumn.cs (2)
900if (_simpleType.Name != null && XmlDataType != null) 1542clone.XmlDataType = XmlDataType;
System\Data\DataTable.cs (1)
398info.AddValue(string.Format(formatProvider, "DataTable.DataColumn_{0}.XmlDataType", i), Columns[i].XmlDataType);
System\Data\xmlsaver.cs (6)
203else if ((dt.Length == 0) || bImplementsInullable || ((dt == Keywords.XSD_ANYTYPE) && (col.XmlDataType != Keywords.XSD_ANYTYPE)) || (col.DataType == typeof(DateTimeOffset))) 1317else if (col.XmlDataType != null && col.XmlDataType.Length != 0 && XSDSchema.IsXsdType(col.XmlDataType)) 1319root.SetAttribute(keyword, XSDSchema.QualifiedName(col.XmlDataType)); 1352else if ((dt.Length == 0) || col.ImplementsINullable || ((dt == Keywords.XSD_ANYTYPE) && (col.XmlDataType != Keywords.XSD_ANYTYPE)))