using System;
namespace OSHttpServer.Parser
{
///
/// Event arguments used when a new header have been parsed.
///
public class HeaderEventArgs : EventArgs
{
///
/// Initializes a new instance of the class.
///
/// Name of header.
/// Header value.
public HeaderEventArgs(string name, string value)
{
Name = name;
Value = value;
}
///
/// Initializes a new instance of the class.
///
public HeaderEventArgs()
{
}
///
/// Gets or sets header name.
///
public string Name { get; set; }
///
/// Gets or sets header value.
///
public string Value { get; set; }
}
}