mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-16 20:50:48 +01:00
ReSharper conform to 'var' settings
This commit is contained in:
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
namespace Rssdp
|
||||
{
|
||||
/// <summary>
|
||||
/// Event arguments for the <see cref="Rssdp.Infrastructure.SsdpDeviceLocatorBase.DeviceUnavailable"/> event.
|
||||
/// Event arguments for the <see cref="Infrastructure.SsdpDeviceLocatorBase.DeviceUnavailable"/> event.
|
||||
/// </summary>
|
||||
public sealed class DeviceUnavailableEventArgs : EventArgs
|
||||
{
|
||||
@@ -25,7 +25,7 @@ namespace Rssdp
|
||||
/// </summary>
|
||||
/// <param name="discoveredDevice">A <see cref="DiscoveredSsdpDevice"/> instance representing the device that has become unavailable.</param>
|
||||
/// <param name="expired">A boolean value indicating whether this device is unavailable because it expired, or because it explicitly sent a byebye notification.. See <see cref="Expired"/> for more detail.</param>
|
||||
/// <exception cref="System.ArgumentNullException">Thrown if the <paramref name="discoveredDevice"/> parameter is null.</exception>
|
||||
/// <exception cref="ArgumentNullException">Thrown if the <paramref name="discoveredDevice"/> parameter is null.</exception>
|
||||
public DeviceUnavailableEventArgs(DiscoveredSsdpDevice discoveredDevice, bool expired)
|
||||
{
|
||||
if (discoveredDevice == null) throw new ArgumentNullException(nameof(discoveredDevice));
|
||||
@@ -47,7 +47,7 @@ namespace Rssdp
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// A reference to a <see cref="Rssdp.DiscoveredSsdpDevice"/> instance containing the discovery details of the removed device.
|
||||
/// A reference to a <see cref="DiscoveredSsdpDevice"/> instance containing the discovery details of the removed device.
|
||||
/// </summary>
|
||||
public DiscoveredSsdpDevice DiscoveredDevice
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user