UnknownResponseHeader.cs 536 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MonoTests.Common
  6. {
  7. class UnknownResponseHeader
  8. {
  9. private string name;
  10. private string value;
  11. public UnknownResponseHeader (string name, string value)
  12. {
  13. this.name = name;
  14. this.value = value;
  15. }
  16. public string Name
  17. {
  18. get { return name; }
  19. }
  20. public string Value
  21. {
  22. get { return value; }
  23. }
  24. }
  25. }