System.Net.Sockets.UdpReceiveResult
namespace System.Net.Sockets
{
public struct UdpReceiveResult : IEquatable<UdpReceiveResult>
{
public byte[] Buffer { get; }
public IPEndPoint RemoteEndPoint { get; }
public UdpReceiveResult(byte[] buffer, IPEndPoint remoteEndPoint);
public bool Equals(UdpReceiveResult other);
public static bool operator ==(UdpReceiveResult left, UdpReceiveResult right);
public static bool operator !=(UdpReceiveResult left, UdpReceiveResult right);
}
}