5 overrides of GetEntity
System.Xml (5)
System\Xml\Resolvers\XmlPreloadedResolver.cs (1)
200public override Object GetEntity(Uri absoluteUri, string role, Type ofObjectToReturn) {
System\Xml\XmlNullResolver.cs (1)
19public override Object GetEntity(Uri absoluteUri, string role, Type ofObjectToReturn) {
System\Xml\XmlSecureResolver.cs (1)
33public override object GetEntity(Uri absoluteUri, string role, Type ofObjectToReturn) {
System\Xml\XmlUrlResolver.cs (1)
56public override Object GetEntity(Uri absoluteUri, string role, Type ofObjectToReturn) {
System\Xml\XmlXapResolver.cs (1)
19public override object GetEntity(Uri absoluteUri, string role, Type ofObjectToReturn)
16 references to GetEntity
System.Data.SqlXml (4)
System\Xml\Xsl\Runtime\XmlQueryContext.cs (1)
128input = this.dataSources.GetEntity(uriResolved, null, null);
System\Xml\Xsl\Xslt\XsltLoader.cs (1)
177object input = xmlResolver.GetEntity(uri, null, null);
System\Xml\Xsl\XsltOld\Compiler.cs (1)
520object input = this.xmlResolver.GetEntity(absoluteUri, null, null);
System\Xml\Xsl\XsltOld\Processor.cs (1)
167Object input = resolver.GetEntity(ruri, null, null);
System.Xml (12)
System\Xml\Core\XmlTextReaderImpl.cs (4)
676stream = (Stream)laterInitParam.inputUriResolver.GetEntity(laterInitParam.inputbaseUri, string.Empty, typeof(Stream)); 2847ps.stream = (Stream) GetTempResolver().GetEntity(ps.baseUri, null, typeof(Stream)); 7158TextReader textReader = (TextReader) xmlResolver.GetEntity( uri, null, typeof( TextReader ) ); 7170Stream stream = (Stream) xmlResolver.GetEntity( uri, null, typeof( Stream ) );
System\Xml\Resolvers\XmlPreloadedResolver.cs (1)
208return fallbackResolver.GetEntity(absoluteUri, role, ofObjectToReturn);
System\Xml\Schema\Preprocessor.cs (1)
1747return xmlResolver.GetEntity(ruri, null, null);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (1)
1444return (Stream)xmlResolver.GetEntity(ruri, null, null);
System\Xml\Schema\XdrBuilder.cs (1)
493Stream stm = (Stream)xmlResolver.GetEntity(ruri,null,null);
System\Xml\Schema\XdrValidator.cs (1)
283Stream stm = (Stream)this.XmlResolver.GetEntity(ruri,null,null);
System\Xml\Schema\XmlSchemaValidator.cs (1)
1552Stream stm = (Stream)xmlResolver.GetEntity(ruri,null,null);
System\Xml\Schema\XsdValidator.cs (1)
483Stream stm = (Stream)this.XmlResolver.GetEntity(ruri,null,null);
System\Xml\XmlSecureResolver.cs (1)
35return resolver.GetEntity(absoluteUri, role, ofObjectToReturn);