6 instantiations of IPPacketInformation
System (6)
net\System\Net\Sockets\_ReceiveMessageOverlappedAsyncResult.cs (3)
148
m_IPPacketInformation = new
IPPacketInformation
(((address!=null)?address:IPAddress.None),(int)controlData.index);
157
m_IPPacketInformation = new
IPPacketInformation
(((address!=null)?address:IPAddress.IPv6None),(int)controlData.index);
161
m_IPPacketInformation = new
IPPacketInformation
();
net\System\Net\Sockets\Socket.cs (3)
9956
m_ReceiveMessageFromPacketInfo = new
IPPacketInformation
(((address != null) ? address : IPAddress.None), (int)controlData.index);
9964
m_ReceiveMessageFromPacketInfo = new
IPPacketInformation
(((address != null) ? address : IPAddress.IPv6None), (int)controlData.index);
9968
m_ReceiveMessageFromPacketInfo = new
IPPacketInformation
();
12 references to IPPacketInformation
System (12)
net\System\Net\Sockets\_ReceiveMessageOverlappedAsyncResult.cs (1)
38
internal
IPPacketInformation
m_IPPacketInformation;
net\System\Net\Sockets\IPPacketInformation.cs (7)
33
public static bool operator == (
IPPacketInformation
packetInformation1,
34
IPPacketInformation
packetInformation2 ) {
38
public static bool operator != (
IPPacketInformation
packetInformation1,
39
IPPacketInformation
packetInformation2 ) {
48
if (!(comparand is
IPPacketInformation
))
51
IPPacketInformation
obj = (
IPPacketInformation
) comparand;
net\System\Net\Sockets\Socket.cs (4)
1954
public int ReceiveMessageFrom(byte[] buffer, int offset, int size, ref SocketFlags socketFlags, ref EndPoint remoteEP, out
IPPacketInformation
ipPacketInformation) {
4657
public int EndReceiveMessageFrom(IAsyncResult asyncResult, ref SocketFlags socketFlags, ref EndPoint endPoint, out
IPPacketInformation
ipPacketInformation) {
8615
private
IPPacketInformation
m_ReceiveMessageFromPacketInfo;
8807
public
IPPacketInformation
ReceiveMessageFromPacketInfo {