5 writes to BaseUri
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\schema\Parser.cs (1)
89_schema.BaseUri = new Uri(reader.BaseURI, UriKind.RelativeOrAbsolute);
FrameworkFork\Microsoft.Xml\Xml\schema\ParserAsync.cs (1)
54_schema.BaseUri = new Uri(reader.BaseURI, UriKind.RelativeOrAbsolute);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchema.cs (2)
592that.BaseUri = this.BaseUri; 646that.BaseUri = this.BaseUri;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (1)
155schema.BaseUri = baseUri;
34 references to BaseUri
dotnet-svcutil-lib (34)
FrameworkFork\Microsoft.Xml\Xml\schema\ChameleonKey.cs (1)
37chameleonLocation = originalSchema.BaseUri;
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (5)
102if (_rootSchema.BaseUri != null) 104if (_schemaLocations[_rootSchema.BaseUri] == null) 106_schemaLocations.Add(_rootSchema.BaseUri, _rootSchema); 295includeLocation = includedSchema.BaseUri; 2161return _xmlResolver.ResolveUri(enclosingSchema.BaseUri, location);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (10)
63if (schema.BaseUri != null) 65_schemaLocations.Add(schema.BaseUri, schema.BaseUri); 176if (include.Schema.BaseUri != null && _schemaLocations[include.Schema.BaseUri] == null) 178_schemaLocations.Add(include.Schema.BaseUri, include.Schema.BaseUri); 188subUri = subImp.BaseUri != null ? subImp.BaseUri : (subImp.Schema != null && subImp.Schema.BaseUri != null ? subImp.Schema.BaseUri : null); 1813return _xmlResolver.ResolveUri(enclosingSchema.BaseUri, location);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchema.cs (2)
592that.BaseUri = this.BaseUri; 646that.BaseUri = this.BaseUri;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSet.cs (13)
447if (_schemas.ContainsKey(schema.SchemaId) || FindSchemaByNSAndUrl(schema.BaseUri, tns, null) != null) 464_schemaLocations.Remove(schema.BaseUri); 729if (schema.BaseUri != null) 731_schemaLocations.Remove(schema.BaseUri); 988if (validatedNamespaces[tns] != null && (FindSchemaByNSAndUrl(impSchema.BaseUri, tns, oldLocations) == null)) 1033Debug.Assert(schema.BaseUri.Equals(schemaUri)); 1197if (schema.BaseUri != null) 1199_schemaLocations.Remove(schema.BaseUri); 1271baseUri = currentSchema.BaseUri; 1483if (reprocessList[i].BaseUri != null && reprocessList[i].BaseUri.OriginalString.Length != 0) 1485_schemaLocations.Remove(reprocessList[i].BaseUri); 1492if (cKey.chameleonLocation.Equals(reprocessList[i].BaseUri))
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (3)
346if (_validatedNamespaces[tns] != null && _schemaSet.FindSchemaByNSAndUrl(schema.BaseUri, tns, oldLocations) == null) 359SendValidationEvent(ResXml.Sch_CannotLoadSchema, new string[] { schema.BaseUri.ToString(), e.Message }, e); 369if (_validatedNamespaces[tns] != null && _schemaSet.FindSchemaByNSAndUrl(impSchema.BaseUri, tns, oldLocations) == null)