mirror of
https://github.com/opensim/opensim.git
synced 2026-05-16 03:36:04 +08:00
14 lines
298 B
C#
14 lines
298 B
C#
using System;
|
|
using OpenMetaverse;
|
|
|
|
namespace OSHttpServer.Parser
|
|
{
|
|
/// <summary>
|
|
/// Event arguments used when a new header have been parsed.
|
|
/// </summary>
|
|
public class HeaderEventArgs : EventArgs
|
|
{
|
|
public osUTF8Slice Name;
|
|
public osUTF8Slice Value;
|
|
}
|
|
} |