Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
QuicOptions.cs
Go to the documentation of this file.
1namespace System.Net.Quic;
2
3public class QuicOptions
4{
5 public int MaxBidirectionalStreams { get; set; } = 100;
6
7
8 public int MaxUnidirectionalStreams { get; set; } = 100;
9
10
11 public TimeSpan IdleTimeout { get; set; }
12}