Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
QuicStreamAbortedException.cs
Go to the documentation of this file.
1namespace System.Net.Quic;
2
4{
5 public long ErrorCode { get; }
6
7 internal QuicStreamAbortedException(long errorCode)
8 : this(System.SR.Format(System.SR.net_quic_streamaborted, errorCode), errorCode)
9 {
10 }
11
12 public QuicStreamAbortedException(string message, long errorCode)
13 : base(message)
14 {
15 ErrorCode = errorCode;
16 }
17}
QuicStreamAbortedException(string message, long errorCode)
Definition SR.cs:7