diff options
| author | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-07-12 23:50:50 -0400 |
|---|---|---|
| committer | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-07-12 23:50:50 -0400 |
| commit | 5f5f2838b1931a2cf426b778755a417cc662b46f (patch) | |
| tree | 007597d0ba7bc2d992f909c9876744d80cc31b42 /MediaBrowser.Common/Net/Request.cs | |
| parent | 572103cdfe9fdf15ac881a104537047b3ca928ea (diff) | |
moved the http server to common, added more http handlers
Diffstat (limited to 'MediaBrowser.Common/Net/Request.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/Request.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/Request.cs b/MediaBrowser.Common/Net/Request.cs new file mode 100644 index 000000000..795c9c36b --- /dev/null +++ b/MediaBrowser.Common/Net/Request.cs @@ -0,0 +1,18 @@ +using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+
+namespace MediaBrowser.Common.Net
+{
+ public class Request
+ {
+ public string HttpMethod { get; set; }
+ public IDictionary<string, IEnumerable<string>> Headers { get; set; }
+ public Stream InputStream { get; set; }
+ public string RawUrl { get; set; }
+ public int ContentLength
+ {
+ get { return int.Parse(Headers["Content-Length"].First()); }
+ }
+ }
+}
\ No newline at end of file |
