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

◆ XmlTextReaderImpl() [16/20]

System.Xml.XmlTextReaderImpl.XmlTextReaderImpl ( string url,
XmlNameTable nt )
inline

Definition at line 1660 of file XmlTextReaderImpl.cs.

1661 : this(nt)
1662 {
1663 if (url == null)
1664 {
1665 throw new ArgumentNullException("url");
1666 }
1667 if (url.Length == 0)
1668 {
1669 throw new ArgumentException(System.SR.Xml_EmptyUrl, "url");
1670 }
1671 _namespaceManager = new XmlNamespaceManager(nt);
1672 _url = url;
1676 _parsingFunction = ParsingFunction.OpenUrl;
1677 }
static string Xml_EmptyUrl
Definition SR.cs:196
Definition SR.cs:7
override string ToString()
Definition Uri.cs:1119
virtual Uri ResolveUri(Uri? baseUri, string? relativeUri)
XmlNamespaceManager _namespaceManager

References System.Xml.XmlTextReaderImpl._namespaceManager, System.Xml.XmlTextReaderImpl._parsingFunction, System.Xml.XmlTextReaderImpl._ps, System.Xml.XmlTextReaderImpl._reportedBaseUri, System.Xml.XmlTextReaderImpl._url, System.Xml.ArgumentException, System.Xml.XmlTextReaderImpl.ParsingState.baseUri, System.Xml.XmlTextReaderImpl.ParsingState.baseUriStr, System.Xml.Dictionary, System.Xml.XmlTextReaderImpl.GetTempResolver(), System.Xml.XmlResolver.ResolveUri(), System.Uri.ToString(), and System.SR.Xml_EmptyUrl.