Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
LingerOption.cs
Go to the documentation of this file.
1
namespace
System.Net.Sockets
;
2
3
public
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
{
17
_enabled
=
value
;
18
}
19
}
20
21
public
int
LingerTime
22
{
23
get
24
{
25
return
_lingerTime
;
26
}
27
set
28
{
29
_lingerTime
=
value
;
30
}
31
}
32
33
public
LingerOption
(
bool
enable,
int
seconds)
34
{
35
Enabled
= enable;
36
LingerTime
= seconds;
37
}
38
}
System.Net.Sockets.LingerOption._lingerTime
int _lingerTime
Definition
LingerOption.cs:7
System.Net.Sockets.LingerOption.LingerOption
LingerOption(bool enable, int seconds)
Definition
LingerOption.cs:33
System.Net.Sockets.LingerOption.Enabled
bool Enabled
Definition
LingerOption.cs:10
System.Net.Sockets.LingerOption.LingerTime
int LingerTime
Definition
LingerOption.cs:22
System.Net.Sockets.LingerOption._enabled
bool _enabled
Definition
LingerOption.cs:5
System.Net.Sockets.LingerOption
Definition
LingerOption.cs:4
System.Net.Sockets
Definition
AddressInfoHints.cs:1
System.ExceptionArgument.value
@ value
source
System.Net.Sockets
System.Net.Sockets
LingerOption.cs
Generated by
1.10.0