Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SupportsType()

virtual bool System.Xml.XmlResolver.SupportsType ( Uri absoluteUri,
Type? type )
inlinevirtualinherited

Reimplemented in System.Xml.Resolvers.XmlPreloadedResolver.

Definition at line 40 of file XmlResolver.cs.

41 {
42 if (absoluteUri == null)
43 {
44 throw new ArgumentNullException("absoluteUri");
45 }
46 if (type == null || type == typeof(Stream))
47 {
48 return true;
49 }
50 return false;
51 }

References System.Xml.Dictionary, and System.type.

Referenced by System.Xml.XmlTextReaderImpl.OpenAndPush(), System.Xml.XmlTextReaderImpl.OpenAndPushAsync(), and System.Xml.Resolvers.XmlPreloadedResolver.SupportsType().