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

◆ XmlSchemaException() [1/14]

System.Xml.Schema.XmlSchemaException.XmlSchemaException ( SerializationInfo info,
StreamingContext context )
inlineprotected

Definition at line 49 of file XmlSchemaException.cs.

50 : base(info, context)
51 {
52 _res = (string)info.GetValue("res", typeof(string));
53 _args = (string[])info.GetValue("args", typeof(string[]));
54 _sourceUri = (string)info.GetValue("sourceUri", typeof(string));
55 _lineNumber = (int)info.GetValue("lineNumber", typeof(int));
56 _linePosition = (int)info.GetValue("linePosition", typeof(int));
57 string text = null;
59 while (enumerator.MoveNext())
60 {
61 SerializationEntry current = enumerator.Current;
62 if (current.Name == "version")
63 {
64 text = (string)current.Value;
65 }
66 }
67 if (text == null)
68 {
70 }
71 else
72 {
73 _message = null;
74 }
75 }
static string CreateMessage(string res, string[] args)

References System.Xml.Schema.XmlSchemaException._args, System.Xml.Schema.XmlSchemaException._lineNumber, System.Xml.Schema.XmlSchemaException._linePosition, System.Xml.Schema.XmlSchemaException._message, System.Xml.Schema.XmlSchemaException._res, System.Xml.Schema.XmlSchemaException._sourceUri, System.Xml.Schema.XmlSchemaException.CreateMessage(), System.Xml.Dictionary, System.info, System.Runtime.Serialization.SerializationEntry.Name, System.text, and System.Runtime.Serialization.SerializationEntry.Value.