2021-05-07 14:43:50 +02:00
|
|
|
#nullable disable
|
|
|
|
|
|
2020-01-22 21:00:07 +01:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
2016-11-04 04:31:05 -04:00
|
|
|
using System.IO;
|
2019-02-27 14:23:39 +01:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2014-04-10 11:06:54 -04:00
|
|
|
|
2018-09-12 19:26:21 +02:00
|
|
|
namespace Emby.Dlna
|
2014-04-10 11:06:54 -04:00
|
|
|
{
|
|
|
|
|
public class ControlRequest
|
|
|
|
|
{
|
2020-08-20 21:04:57 +02:00
|
|
|
public ControlRequest(IHeaderDictionary headers)
|
2020-08-20 17:01:04 +02:00
|
|
|
{
|
2020-08-20 21:04:57 +02:00
|
|
|
Headers = headers;
|
2020-08-20 17:01:04 +02:00
|
|
|
}
|
|
|
|
|
|
2020-08-20 21:04:57 +02:00
|
|
|
public IHeaderDictionary Headers { get; }
|
2014-04-10 11:06:54 -04:00
|
|
|
|
2016-11-04 04:31:05 -04:00
|
|
|
public Stream InputXml { get; set; }
|
2014-04-10 11:06:54 -04:00
|
|
|
|
2014-04-18 01:03:01 -04:00
|
|
|
public string TargetServerUuId { get; set; }
|
|
|
|
|
|
2014-04-25 13:30:41 -04:00
|
|
|
public string RequestedUrl { get; set; }
|
2014-04-10 11:06:54 -04:00
|
|
|
}
|
|
|
|
|
}
|