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

◆ CanSetRemoteStackTrace()

bool System.Exception.CanSetRemoteStackTrace ( )
inlineprivateinherited

Definition at line 295 of file Exception.cs.

296 {
298 {
299 return false;
300 }
301 if (_stackTrace != null || _stackTraceString != null || _remoteStackTraceString != null)
302 {
303 ThrowHelper.ThrowInvalidOperationException();
304 }
305 return true;
306 }
byte[] _stackTrace
Definition Exception.cs:55
string _stackTraceString
Definition Exception.cs:59
string _remoteStackTraceString
Definition Exception.cs:61
static bool IsImmutableAgileException(Exception e)

References System.Exception._remoteStackTraceString, System.Exception._stackTrace, System.Exception._stackTraceString, System.Exception.IsImmutableAgileException(), and System.ThrowHelper.ThrowInvalidOperationException().

Referenced by System.Exception.SetCurrentStackTrace(), and System.Exception.SetRemoteStackTrace().