Exemple #1
0
 public HotpResponse(HotpStatus status, string contentType, string bodyContent)
 {
     _Body = new HotpResponseBody(bodyContent);
     _Head = new HotpResponseHead(status, bodyContent.Length, contentType);
 }
Exemple #2
0
 public HotpResponseHead(HotpStatus status, int contentLength, string mimeType)
 {
     _Status        = status;
     _ContentLength = contentLength;
     _MimeType      = mimeType;
 }