mirror of
https://github.com/opensim/opensim.git
synced 2026-05-16 03:36:04 +08:00
25 lines
612 B
C#
25 lines
612 B
C#
using System;
|
|
|
|
namespace OSHttpServer.Parser
|
|
{
|
|
/// <summary>
|
|
/// Arguments used when body bytes have come.
|
|
/// </summary>
|
|
public class BodyEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets buffer that contains the received bytes.
|
|
/// </summary>
|
|
public byte[] Buffer;
|
|
|
|
/// <summary>
|
|
/// number of bytes from <see cref="Offset"/> that should be parsed.
|
|
/// </summary>
|
|
public int Count;
|
|
|
|
/// <summary>
|
|
/// offset in buffer where to start processing.
|
|
/// </summary>
|
|
public int Offset;
|
|
}
|
|
} |