mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
18 lines
507 B
C#
18 lines
507 B
C#
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()); }
|
|
}
|
|
}
|
|
} |