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