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

◆ XPathException() [1/6]

System.Xml.XPath.XPathException.XPathException ( SerializationInfo info,
StreamingContext context )
inlineprotected

Definition at line 29 of file XPathException.cs.

30 : base(info, context)
31 {
32 _res = (string)info.GetValue("res", typeof(string));
33 _args = (string[])info.GetValue("args", typeof(string[]));
34 string text = null;
36 while (enumerator.MoveNext())
37 {
38 SerializationEntry current = enumerator.Current;
39 if (current.Name == "version")
40 {
41 text = (string)current.Value;
42 }
43 }
44 if (text == null)
45 {
47 }
48 else
49 {
50 _message = null;
51 }
52 }
static string CreateMessage(string res, string[] args)

References System.Xml.XPath.XPathException._args, System.Xml.XPath.XPathException._message, System.Xml.XPath.XPathException._res, System.Xml.XPath.XPathException.CreateMessage(), System.Xml.Dictionary, System.info, System.Runtime.Serialization.SerializationEntry.Name, System.text, and System.Runtime.Serialization.SerializationEntry.Value.