15 references to XSINS
System.Data.Common (15)
System\Data\Common\ObjectStorage.cs (1)
371string? xsdTypeName = xmlReader.GetAttribute(Keywords.TYPE, Keywords.XSINS); // this xsd type: Base type polymorphism
System\Data\Common\SqlUDTStorage.cs (1)
178string? xsdTypeName = xmlReader.GetAttribute(Keywords.MSD_INSTANCETYPE, Keywords.XSINS); // this xsd type
System\Data\XmlDataLoader.cs (4)
387if (XMLSchema.GetBooleanAttribute(rowElement, Keywords.XSI_NIL, Keywords.XSINS, false) && string.IsNullOrEmpty(text)) 421if (XMLSchema.GetBooleanAttribute(e, Keywords.XSI_NIL, Keywords.XSINS, false) && string.IsNullOrEmpty(text)) 1147xsiNilString = _dataReader.GetAttribute(Keywords.XSI_NIL, Keywords.XSINS); 1161xsiTypeString = _dataReader.GetAttribute(Keywords.TYPE, Keywords.XSINS);
System\Data\XMLDiffLoader.cs (1)
388(row.GetAttribute(Keywords.TYPE, Keywords.XSINS) != null));
System\Data\xmlsaver.cs (5)
2544_xmlw.WriteAttributeString(Keywords.XSI, Keywords.XSI_NIL, Keywords.XSINS, Keywords.TRUE); 2629_xmlw.WriteAttributeString(Keywords.XSI, Keywords.TYPE, Keywords.XSINS, xsdTypeName); 2865_xmlw.WriteAttributeString(Keywords.XMLNS, Keywords.XSI, Keywords.XSD_XMLNS_NS, Keywords.XSINS); 2991_xmlw.WriteAttributeString(Keywords.XSI, Keywords.XSI_NIL, Keywords.XSINS, Keywords.TRUE); 3058_xmlw.WriteAttributeString(Keywords.XSI, Keywords.TYPE, Keywords.XSINS, xsdTypeName);
System\Xml\XmlBoundElement.cs (1)
318w.WriteAttributeString("xmlns", "xsi", "http://www.w3.org/2000/xmlns/", Keywords.XSINS);
System\Xml\XmlDataDocument.cs (2)
746XmlAttribute attr = CreateAttribute(XSI, Keywords.XSI_NIL, Keywords.XSINS); 1475attr = CreateAttribute(XSI, Keywords.XSI_NIL, Keywords.XSINS);