using System; namespace OSHttpServer.Parser { /// /// Arguments used when body bytes have come. /// public class BodyEventArgs : EventArgs { /// /// Gets or sets buffer that contains the received bytes. /// public byte[] Buffer; /// /// number of bytes from that should be parsed. /// public int Count; /// /// offset in buffer where to start processing. /// public int Offset; } }