7 writes to namespaceURI
System.Data (7)
fx\src\data\System\Data\DataSet.cs (2)
428namespaceURI = info.GetString("DataSet.Namespace"); 692namespaceURI = value;
fx\src\data\System\Data\DataTable.cs (3)
262ds.namespaceURI = this.Namespace; 268this.DataSet.namespaceURI = this.Namespace; //this.DataSet.Namespace = this.Namespace; ?? 278dataSet.namespaceURI = tempDSNamespace;
fx\src\data\System\Data\XMLSchema.cs (1)
588ds.namespaceURI = (ns== null)? string.Empty : ns; // see fx\Data\XDO\ReadXml\SchemaM2.xml for more info
fx\src\data\System\Data\XmlToDatasetMap.cs (1)
271dataSet.namespaceURI = dsNamespace; // Set a DataSet namespace URI
11 references to namespaceURI
System.Data (11)
fx\src\data\System\Data\DataSet.cs (3)
672return namespaceURI; 678if (value != namespaceURI) { 2071if (this.DataSetName != root.Name && this.namespaceURI != root.NamespaceURI &&
fx\src\data\System\Data\Merger.cs (6)
54_IgnoreNSforTableLookup = (dataSet.namespaceURI != source.namespaceURI); // if two DataSets have different 126if (src.DataSet == null || src.DataSet.namespaceURI != this.dataSet.namespaceURI) { 132src.DataSet.namespaceURI != this.dataTable.DataSet.namespaceURI) {
fx\src\data\System\Data\XMLSchema.cs (2)
587if (ds.namespaceURI == null || ds.namespaceURI.Length == 0) {// set just one time, for backward compatibility