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

◆ SetRemoteStackTrace()

static Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo.SetRemoteStackTrace ( Exception source,
string stackTrace )
inlinestatic

Definition at line 55 of file ExceptionDispatchInfo.cs.

56 {
57 if (source == null)
58 {
59 throw new ArgumentNullException("source");
60 }
61 if (stackTrace == null)
62 {
63 throw new ArgumentNullException("stackTrace");
64 }
65 source.SetRemoteStackTrace(stackTrace);
66 return source;
67 }

References System.source.