5 overrides of GetEntity
System.Private.Xml (5)
System\Xml\Resolvers\XmlPreloadedResolver.cs (1)
225public override object? GetEntity(Uri absoluteUri, string? role, Type? ofObjectToReturn)
System\Xml\XmlResolver.FileSystemResolver.cs (1)
29public override object? GetEntity(Uri absoluteUri, string? role, Type? ofObjectToReturn)
System\Xml\XmlResolver.ThrowingResolver.cs (1)
38public override object GetEntity(Uri absoluteUri, string? role, Type? ofObjectToReturn)
System\Xml\XmlSecureResolver.cs (1)
24public override object? GetEntity(Uri absoluteUri, string? role, Type? ofObjectToReturn) => XmlResolver.ThrowingResolver.GetEntity(absoluteUri, role, ofObjectToReturn);
System\Xml\XmlUrlResolver.cs (1)
39public override object? GetEntity(Uri absoluteUri, string? role, Type? ofObjectToReturn)
18 references to GetEntity
System.Private.Xml (18)
System\Xml\Core\XmlTextReaderImpl.cs (4)
643stream = (Stream?)_laterInitParam.inputUriResolver.GetEntity(_laterInitParam.inputbaseUri, string.Empty, typeof(Stream)); 3068_ps.stream = (Stream?)tmpResolver.GetEntity(_ps.baseUri, null, typeof(Stream)); 7955TextReader? textReader = (TextReader?)_xmlResolver.GetEntity(uri, null, typeof(TextReader)); 7969Stream? stream = (Stream?)_xmlResolver.GetEntity(uri, null, typeof(Stream));
System\Xml\Resolvers\XmlPreloadedResolver.cs (1)
234return _fallbackResolver.GetEntity(absoluteUri, role, ofObjectToReturn);
System\Xml\Schema\Preprocessor.cs (1)
2134return _xmlResolver!.GetEntity(ruri, null, null);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (1)
1810return (Stream?)_xmlResolver!.GetEntity(ruri, null, null);
System\Xml\Schema\XdrBuilder.cs (1)
524Stream stm = (Stream)_xmlResolver.GetEntity(ruri, null, null)!;
System\Xml\Schema\XdrValidator.cs (1)
345Stream stm = (Stream)this.XmlResolver.GetEntity(ruri, null, null)!;
System\Xml\Schema\XmlSchemaValidator.cs (1)
1847Stream stm = (Stream)_xmlResolver.GetEntity(ruri, null, null)!;
System\Xml\Schema\XsdValidator.cs (1)
578Stream stm = (Stream)this.XmlResolver.GetEntity(ruri, null, null)!;
System\Xml\XmlResolver.FileSystemResolver.cs (1)
16/// Calling <see cref="GetEntity"/> or <see cref="GetEntityAsync"/> on the
System\Xml\XmlResolver.ThrowingResolver.cs (1)
16/// Calling <see cref="GetEntity"/> or <see cref="GetEntityAsync"/> on the
System\Xml\XmlSecureResolver.cs (1)
24public override object? GetEntity(Uri absoluteUri, string? role, Type? ofObjectToReturn) => XmlResolver.ThrowingResolver.GetEntity(absoluteUri, role, ofObjectToReturn);
System\Xml\Xsl\Runtime\XmlQueryContext.cs (1)
135input = _dataSources.GetEntity(uriResolved!, null, null);
System\Xml\Xsl\Xslt\XsltLoader.cs (1)
202object? input = xmlResolver.GetEntity(uri, null, null);
System\Xml\Xsl\XsltOld\Compiler.cs (1)
581object? input = _xmlResolver.GetEntity(absoluteUri, null, null);
System\Xml\Xsl\XsltOld\Processor.cs (1)
177object? input = _resolver.GetEntity(ruri, null, null);