Guest User

Untitled

a guest
Jul 16th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public interface IResponse {
  2. string Status {get;} // "200 OK"
  3. IDictionary<string, IEnumerable<string>> Headers {get;}
  4. //IEnumerable Body {get;}
  5. IEnumerable GetBody();
  6. }
Add Comment
Please, Sign In to add comment