2020-04-05 09:10:56 -07:00
|
|
|
#nullable disable
|
2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:02:23 -07:00
|
|
|
using System;
|
2018-12-27 16:27:57 -07:00
|
|
|
using System.Collections.Generic;
|
2019-07-07 12:03:26 -07:00
|
|
|
using System.Net;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
|
|
{
|
|
|
|
public class UpnpDeviceInfo
|
|
|
|
{
|
|
|
|
public Uri Location { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public Dictionary<string, string> Headers { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2019-07-07 12:03:26 -07:00
|
|
|
public IPAddress LocalIpAddress { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public int LocalPort { get; set; }
|
2021-04-15 10:36:47 -07:00
|
|
|
|
|
|
|
public IPAddress RemoteIpAddress { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|