| 1234567891011121314151617181920212223242526272829 |
- 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; }
- }
- }
- }
|