System.Net.Sockets.SendPacketsElement
namespace System.Net.Sockets
{
public class SendPacketsElement
{
public byte[] Buffer { get; }
public int Count { get; }
public bool EndOfPacket { get; }
public string FilePath { get; }
public int Offset { get; }
public SendPacketsElement(byte[] buffer);
public SendPacketsElement(byte[] buffer, int offset, int count);
public SendPacketsElement(byte[] buffer, int offset, int count, bool endOfPacket);
public SendPacketsElement(string filepath);
public SendPacketsElement(string filepath, int offset, int count);
public SendPacketsElement(string filepath, int offset, int count, bool endOfPacket);
}
}