1 override of SupportsType
System.Xml (1)
System\Xml\Resolvers\XmlPreloadedResolver.cs (1)
234public override bool SupportsType(Uri absoluteUri, Type type) {
6 references to SupportsType
System.Xml (6)
System\Xml\Core\XmlTextReaderImpl.cs (2)
7157if ( xmlResolver.SupportsType( uri, typeof( TextReader ) ) ) { 7168Debug.Assert( xmlResolver.SupportsType( uri, typeof( Stream ) ), "Stream must always be a supported type in XmlResolver" );
System\Xml\Core\XmlTextReaderImplAsync.cs (2)
4801if ( xmlResolver.SupportsType( uri, typeof( TextReader ) ) ) { 4812Debug.Assert( xmlResolver.SupportsType( uri, typeof( Stream ) ), "Stream must always be a supported type in XmlResolver" );
System\Xml\Resolvers\XmlPreloadedResolver.cs (2)
242return fallbackResolver.SupportsType(absoluteUri, type); 244return base.SupportsType(absoluteUri, type);