KnownResponseHeader.cs 529 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 KnownResponseHeader
  8. {
  9. private int index;
  10. private string value;
  11. public KnownResponseHeader (int index, string value)
  12. {
  13. this.index = index;
  14. this.value = value;
  15. }
  16. public int Index
  17. {
  18. get { return index; }
  19. }
  20. public string Value
  21. {
  22. get { return value; }
  23. }
  24. }
  25. }