Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
LingerOption.cs
Go to the documentation of this file.
1namespace System.Net.Sockets;
2
3public class LingerOption
4{
5 private bool _enabled;
6
7 private int _lingerTime;
8
9 public bool Enabled
10 {
11 get
12 {
13 return _enabled;
14 }
15 set
16 {
18 }
19 }
20
21 public int LingerTime
22 {
23 get
24 {
25 return _lingerTime;
26 }
27 set
28 {
30 }
31 }
32
33 public LingerOption(bool enable, int seconds)
34 {
35 Enabled = enable;
36 LingerTime = seconds;
37 }
38}
LingerOption(bool enable, int seconds)