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

◆ ToString()

override string System.Xml.Xsl.XslTransformException.ToString ( )
inlineinherited

Definition at line 70 of file XslTransformException.cs.

71 {
72 string text = GetType().FullName;
74 if (text2 != null && text2.Length > 0)
75 {
76 text = text + ": " + text2;
77 }
78 if (base.InnerException != null)
79 {
80 text = text + " ---> " + base.InnerException.ToString() + Environment.NewLine + " " + CreateMessage(System.SR.Xml_EndOfInnerExceptionStack);
81 }
82 if (StackTrace != null)
83 {
85 }
86 return text;
87 }
virtual ? string StackTrace
Definition Exception.cs:143
new Type GetType()
Definition Exception.cs:437
static string Xml_EndOfInnerExceptionStack
Definition SR.cs:1826
Definition SR.cs:7
string? FullName
Definition Type.cs:47
static string CreateMessage(string res, params string[] args)

References System.Xml.Xsl.XslTransformException.CreateMessage(), System.Xml.Dictionary, System.Xml.Xsl.XslTransformException.FormatDetailedMessage(), System.Type.FullName, System.Exception.GetType(), System.Exception.StackTrace, System.text, and System.SR.Xml_EndOfInnerExceptionStack.