12 writes to XmlDataType
System.Data.Common (12)
System\Data\DataColumn.cs (3)
559XmlDataType = null; 903XmlDataType = null; 1541clone.XmlDataType = XmlDataType;
System\Data\DataTable.cs (1)
464dc.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)
2049column.XmlDataType = xsdType.SimpleTypeQualifiedName; 2054column.XmlDataType = strType; 2157column.XmlDataType = strType; 2289column.XmlDataType = xsdType.SimpleTypeQualifiedName; 2294column.XmlDataType = strType; 2475column.XmlDataType = xsdType.SimpleTypeQualifiedName; 2480column.XmlDataType = strType;
9 references to XmlDataType
System.Data.Common (9)
System\Data\DataColumn.cs (2)
899if (_simpleType.Name != null && XmlDataType != null) 1541clone.XmlDataType = XmlDataType;
System\Data\DataTable.cs (1)
393info.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))) 1310else if (col.XmlDataType != null && col.XmlDataType.Length != 0 && XSDSchema.IsXsdType(col.XmlDataType)) 1312root.SetAttribute(keyword, XSDSchema.QualifiedName(col.XmlDataType)); 1345else if ((dt.Length == 0) || col.ImplementsINullable || ((dt == Keywords.XSD_ANYTYPE) && (col.XmlDataType != Keywords.XSD_ANYTYPE)))