5 writes to BaseUri
System.Xml (5)
System\Xml\Schema\Parser.cs (1)
85schema.BaseUri = new Uri(reader.BaseURI, UriKind.RelativeOrAbsolute);
System\Xml\Schema\ParserAsync.cs (1)
45schema.BaseUri = new Uri(reader.BaseURI, UriKind.RelativeOrAbsolute);
System\Xml\Schema\XmlSchema.cs (2)
533that.BaseUri = this.BaseUri; 580that.BaseUri = this.BaseUri;
System\Xml\Serialization\XmlSchemas.cs (1)
137schema.BaseUri = baseUri;
34 references to BaseUri
System.Xml (34)
System\Xml\Schema\Chameleonkey.cs (1)
34chameleonLocation = originalSchema.BaseUri;
System\Xml\Schema\Preprocessor.cs (5)
95if (rootSchema.BaseUri != null) { 96if (schemaLocations[rootSchema.BaseUri] == null) { 97schemaLocations.Add(rootSchema.BaseUri, rootSchema); 250includeLocation = includedSchema.BaseUri; 1743return xmlResolver.ResolveUri( enclosingSchema.BaseUri, location);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (10)
57if (schema.BaseUri != null) { 58schemaLocations.Add(schema.BaseUri, schema.BaseUri); 151if (include.Schema.BaseUri != null && schemaLocations[include.Schema.BaseUri] == null) { 152schemaLocations.Add(include.Schema.BaseUri, include.Schema.BaseUri); 160subUri = subImp.BaseUri != null ? subImp.BaseUri : (subImp.Schema != null && subImp.Schema.BaseUri != null ? subImp.Schema.BaseUri : null); 1435return xmlResolver.ResolveUri(enclosingSchema.BaseUri, location);
System\Xml\Schema\XmlSchema.cs (2)
533that.BaseUri = this.BaseUri; 580that.BaseUri = this.BaseUri;
System\Xml\Schema\XmlSchemaSet.cs (13)
387if (this.schemas.ContainsKey(schema.SchemaId) || FindSchemaByNSAndUrl(schema.BaseUri, tns, null) != null) { //Do not already existing url 400schemaLocations.Remove(schema.BaseUri); 622if (schema.BaseUri != null) { 623schemaLocations.Remove(schema.BaseUri); 852if (validatedNamespaces[tns] != null && (FindSchemaByNSAndUrl(impSchema.BaseUri, tns, oldLocations) == null) ) { 887Debug.Assert(schema.BaseUri.Equals(schemaUri)); 1019if (schema.BaseUri != null) { 1020schemaLocations.Remove(schema.BaseUri); 1083baseUri = currentSchema.BaseUri; 1248if (reprocessList[i].BaseUri != null && reprocessList[i].BaseUri.OriginalString.Length != 0) { 1249schemaLocations.Remove(reprocessList[i].BaseUri); 1255if (cKey.chameleonLocation.Equals(reprocessList[i].BaseUri)) {
System\Xml\Schema\XmlSchemaValidator.cs (3)
310if (validatedNamespaces[tns] != null && schemaSet.FindSchemaByNSAndUrl(schema.BaseUri, tns, oldLocations) == null) { 319SendValidationEvent(Res.Sch_CannotLoadSchema, new string[] {schema.BaseUri.ToString(), e.Message},e); 327if (validatedNamespaces[tns] != null && schemaSet.FindSchemaByNSAndUrl(impSchema.BaseUri, tns, oldLocations) == null) {