Terraria
v1.4.4.9
Terraria source code documentation
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Events
_
a
c
d
e
f
i
l
m
o
p
r
s
t
u
w
Files
File List
File Members
All
Enumerations
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Properties
Events
Macros
Loading...
Searching...
No Matches
SystemGatewayIPAddressInformation.cs
Go to the documentation of this file.
1
namespace
System.Net.NetworkInformation
;
2
3
internal
sealed
class
SystemGatewayIPAddressInformation
:
GatewayIPAddressInformation
4
{
5
private
readonly
IPAddress
_address
;
6
7
public
override
IPAddress
Address
=>
_address
;
8
9
private
SystemGatewayIPAddressInformation
(
IPAddress
address)
10
{
11
_address
= address;
12
}
9
private
SystemGatewayIPAddressInformation
(
IPAddress
address) {
…
}
13
14
internal
static
GatewayIPAddressInformationCollection
ToGatewayIpAddressInformationCollection
(
IPAddressCollection
addresses)
15
{
16
GatewayIPAddressInformationCollection
gatewayIPAddressInformationCollection =
new
GatewayIPAddressInformationCollection
();
17
foreach
(
IPAddress
address
in
addresses)
18
{
19
gatewayIPAddressInformationCollection.InternalAdd(
new
SystemGatewayIPAddressInformation
(address));
20
}
21
return
gatewayIPAddressInformationCollection;
22
}
14
internal
static
GatewayIPAddressInformationCollection
ToGatewayIpAddressInformationCollection
(
IPAddressCollection
addresses) {
…
}
23
}
3
internal
sealed
class
SystemGatewayIPAddressInformation
:
GatewayIPAddressInformation
{
…
};
System.Net.IPAddress
Definition
IPAddress.cs:10
System.Net.NetworkInformation.GatewayIPAddressInformationCollection
Definition
GatewayIPAddressInformationCollection.cs:7
System.Net.NetworkInformation.GatewayIPAddressInformation
Definition
GatewayIPAddressInformation.cs:4
System.Net.NetworkInformation.IPAddressCollection
Definition
IPAddressCollection.cs:7
System.Net.NetworkInformation.SystemGatewayIPAddressInformation.SystemGatewayIPAddressInformation
SystemGatewayIPAddressInformation(IPAddress address)
Definition
SystemGatewayIPAddressInformation.cs:9
System.Net.NetworkInformation.SystemGatewayIPAddressInformation.Address
override IPAddress Address
Definition
SystemGatewayIPAddressInformation.cs:7
System.Net.NetworkInformation.SystemGatewayIPAddressInformation.ToGatewayIpAddressInformationCollection
static GatewayIPAddressInformationCollection ToGatewayIpAddressInformationCollection(IPAddressCollection addresses)
Definition
SystemGatewayIPAddressInformation.cs:14
System.Net.NetworkInformation.SystemGatewayIPAddressInformation._address
readonly IPAddress _address
Definition
SystemGatewayIPAddressInformation.cs:5
System.Net.NetworkInformation.SystemGatewayIPAddressInformation
Definition
SystemGatewayIPAddressInformation.cs:4
System.Net.NetworkInformation
Definition
DuplicateAddressDetectionState.cs:1
source
System.Net.NetworkInformation
System.Net.NetworkInformation
SystemGatewayIPAddressInformation.cs
Generated by
1.10.0