jellyfin/RSSDP/DeviceAvailableEventArgs.cs

59 lines
2.1 KiB
C#
Raw Normal View History

using System;
using System.Net;
2016-10-30 00:22:20 +02:00
namespace Rssdp
{
2019-01-08 00:24:34 +01:00
/// <summary>
2019-01-13 21:37:13 +01:00
/// Event arguments for the <see cref="Infrastructure.SsdpDeviceLocatorBase.DeviceAvailable"/> event.
2019-01-08 00:24:34 +01:00
/// </summary>
public sealed class DeviceAvailableEventArgs : EventArgs
{
public IPAddress LocalIpAddress { get; set; }
2016-10-30 00:22:20 +02:00
2017-01-24 20:54:18 +01:00
#region Fields
2016-10-30 00:22:20 +02:00
2017-01-24 20:54:18 +01:00
private readonly DiscoveredSsdpDevice _DiscoveredDevice;
private readonly bool _IsNewlyDiscovered;
2016-10-30 00:22:20 +02:00
2019-01-13 21:37:13 +01:00
#endregion
2016-10-30 00:22:20 +02:00
2019-01-13 21:37:13 +01:00
#region Constructors
2016-10-30 00:22:20 +02:00
2019-01-13 21:37:13 +01:00
/// <summary>
/// Full constructor.
/// </summary>
/// <param name="discoveredDevice">A <see cref="DiscoveredSsdpDevice"/> instance representing the available device.</param>
/// <param name="isNewlyDiscovered">A boolean value indicating whether or not this device came from the cache. See <see cref="IsNewlyDiscovered"/> for more detail.</param>
/// <exception cref="ArgumentNullException">Thrown if the <paramref name="discoveredDevice"/> parameter is null.</exception>
public DeviceAvailableEventArgs(DiscoveredSsdpDevice discoveredDevice, bool isNewlyDiscovered)
{
if (discoveredDevice == null) throw new ArgumentNullException(nameof(discoveredDevice));
2016-10-30 00:22:20 +02:00
_DiscoveredDevice = discoveredDevice;
_IsNewlyDiscovered = isNewlyDiscovered;
}
2016-10-30 00:22:20 +02:00
#endregion
2016-10-30 00:22:20 +02:00
#region Public Properties
2016-10-30 00:22:20 +02:00
/// <summary>
/// Returns true if the device was discovered due to an alive notification, or a search and was not already in the cache. Returns false if the item came from the cache but matched the current search request.
/// </summary>
public bool IsNewlyDiscovered
{
get { return _IsNewlyDiscovered; }
}
2016-10-30 00:22:20 +02:00
2019-01-13 21:37:13 +01:00
/// <summary>
/// A reference to a <see cref="DiscoveredSsdpDevice"/> instance containing the discovered details and allowing access to the full device description.
/// </summary>
public DiscoveredSsdpDevice DiscoveredDevice
{
get { return _DiscoveredDevice; }
}
#endregion
}
}