File: System\Net\Sockets\SocketReceiveFromResult.cs | Web Access |
Project: src\src\libraries\System.Net.Sockets\src\System.Net.Sockets.csproj (System.Net.Sockets) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Net.Sockets { public struct SocketReceiveFromResult { public int ReceivedBytes; public EndPoint RemoteEndPoint; } // Alternative: // public struct SocketReceiveFromResult // { // public int ReceivedBytes; // public IPAddress Address; // public int Port; // } } |