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