Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ThreadExceptionEventArgs.cs
Go to the documentation of this file.
1
namespace
System.Threading
;
2
3
public
class
ThreadExceptionEventArgs
:
EventArgs
4
{
5
private
readonly
Exception
m_exception
;
6
7
public
Exception
Exception
=>
m_exception
;
8
9
public
ThreadExceptionEventArgs
(
Exception
t)
10
{
11
m_exception
= t;
12
}
13
}
System.EventArgs
Definition
EventArgs.cs:8
System.Exception
Definition
Exception.cs:15
System.Threading.ThreadExceptionEventArgs.ThreadExceptionEventArgs
ThreadExceptionEventArgs(Exception t)
Definition
ThreadExceptionEventArgs.cs:9
System.Threading.ThreadExceptionEventArgs.m_exception
readonly Exception m_exception
Definition
ThreadExceptionEventArgs.cs:5
System.Threading.ThreadExceptionEventArgs
Definition
ThreadExceptionEventArgs.cs:4
System.Threading
Definition
TaskToApm.cs:3
source
System.Private.CoreLib
System.Threading
ThreadExceptionEventArgs.cs
Generated by
1.10.0