Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
QuicException.cs
Go to the documentation of this file.
1
namespace
System.Net.Quic
;
2
3
public
class
QuicException
:
Exception
4
{
5
public
QuicException
(
string
? message)
6
: base(message)
7
{
8
}
9
10
public
QuicException
(
string
? message,
Exception
? innerException)
11
: base(message, innerException)
12
{
13
}
14
15
public
QuicException
(
string
? message,
Exception
? innerException,
int
result)
16
: base(message, innerException)
17
{
18
base.HResult = result;
19
}
20
}
System.Exception
Definition
Exception.cs:15
System.Net.Quic.QuicException.QuicException
QuicException(string? message, Exception? innerException)
Definition
QuicException.cs:10
System.Net.Quic.QuicException.QuicException
QuicException(string? message, Exception? innerException, int result)
Definition
QuicException.cs:15
System.Net.Quic.QuicException.QuicException
QuicException(string? message)
Definition
QuicException.cs:5
System.Net.Quic.QuicException
Definition
QuicException.cs:4
System.Net.Quic
Definition
MockConnection.cs:10
source
System.Net.Quic
System.Net.Quic
QuicException.cs
Generated by
1.10.0