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

◆ SupportsType()

override bool System.Xml.Resolvers.XmlPreloadedResolver.SupportsType ( Uri absoluteUri,
Type? type )
inlinevirtual

Reimplemented from System.Xml.XmlResolver.

Definition at line 227 of file XmlPreloadedResolver.cs.

228 {
229 if (absoluteUri == null)
230 {
231 throw new ArgumentNullException("absoluteUri");
232 }
234 {
235 if (_fallbackResolver != null)
236 {
238 }
239 return base.SupportsType(absoluteUri, type);
240 }
241 return value.SupportsType(type);
242 }
bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value)
readonly Dictionary< Uri, PreloadedData > _mappings
virtual bool SupportsType(Uri absoluteUri, Type? type)

References System.Xml.Resolvers.XmlPreloadedResolver._fallbackResolver, System.Xml.Resolvers.XmlPreloadedResolver._mappings, System.Xml.XmlResolver.SupportsType(), System.Collections.Generic.Dictionary< TKey, TValue >.TryGetValue(), System.type, and System.value.