30 lines
536 B
C#
30 lines
536 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace MonoTests.Common
|
|||
|
{
|
|||
|
class UnknownResponseHeader
|
|||
|
{
|
|||
|
private string name;
|
|||
|
private string value;
|
|||
|
|
|||
|
public UnknownResponseHeader (string name, string value)
|
|||
|
{
|
|||
|
this.name = name;
|
|||
|
this.value = value;
|
|||
|
}
|
|||
|
|
|||
|
public string Name
|
|||
|
{
|
|||
|
get { return name; }
|
|||
|
}
|
|||
|
|
|||
|
public string Value
|
|||
|
{
|
|||
|
get { return value; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|