6 references to RemoteAddress
System.Net.Quic (6)
System\Net\Quic\Internal\MsQuicExtensions.cs (4)
12
=> $"{{ {nameof(QuicVersion)} = {QuicVersion}, {nameof(LocalAddress)} = {MsQuicHelpers.QuicAddrToIPEndPoint(LocalAddress)}, {nameof(
RemoteAddress
)} = {MsQuicHelpers.QuicAddrToIPEndPoint(
RemoteAddress
)} }}";
21
=> $"{{ {nameof(NEW_CONNECTION.Info)} = {{ {nameof(QUIC_NEW_CONNECTION_INFO.QuicVersion)} = {NEW_CONNECTION.Info->QuicVersion}, {nameof(QUIC_NEW_CONNECTION_INFO.LocalAddress)} = {MsQuicHelpers.QuicAddrToIPEndPoint(NEW_CONNECTION.Info->LocalAddress)}, {nameof(QUIC_NEW_CONNECTION_INFO.
RemoteAddress
)} = {MsQuicHelpers.QuicAddrToIPEndPoint(NEW_CONNECTION.Info->
RemoteAddress
)} }}, {nameof(NEW_CONNECTION.Connection)} = 0x{(IntPtr)NEW_CONNECTION.Connection:X11} }}",
System\Net\Quic\QuicConnection.cs (1)
368
_remoteEndPoint = MsQuicHelpers.QuicAddrToIPEndPoint(info->
RemoteAddress
);
System\Net\Quic\QuicListener.cs (1)
330
NetEventSource.Info(this, $"{this} Refusing connection from {MsQuicHelpers.QuicAddrToIPEndPoint(data.Info->
RemoteAddress
)} due to backlog limit");