1 override of SupportsType
System.Private.Xml (1)
System\Xml\Resolvers\XmlPreloadedResolver.cs (1)
265
public override bool
SupportsType
(Uri absoluteUri, Type? type)
6 references to SupportsType
System.Private.Xml (6)
System\Xml\Core\XmlTextReaderImpl.cs (2)
7953
if (_xmlResolver.
SupportsType
(uri, typeof(TextReader)))
7967
Debug.Assert(_xmlResolver.
SupportsType
(uri, typeof(Stream)), "Stream must always be a supported type in XmlResolver");
System\Xml\Core\XmlTextReaderImplAsync.cs (2)
5164
if (_xmlResolver.
SupportsType
(uri, typeof(TextReader)))
5178
Debug.Assert(_xmlResolver.
SupportsType
(uri, typeof(Stream)), "Stream must always be a supported type in XmlResolver");
System\Xml\Resolvers\XmlPreloadedResolver.cs (2)
274
return _fallbackResolver.
SupportsType
(absoluteUri, type);
276
return base.
SupportsType
(absoluteUri, type);