aboutsummaryrefslogtreecommitdiff
path: root/RSSDP/SsdpDeviceIcon.cs
diff options
context:
space:
mode:
authorstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
committerstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
commit48facb797ed912e4ea6b04b17d1ff190ac2daac4 (patch)
tree8dae77a31670a888d733484cb17dd4077d5444e8 /RSSDP/SsdpDeviceIcon.cs
parentc32d8656382a0eacb301692e0084377fc433ae9b (diff)
Update to 3.5.2 and .net core 2.1
Diffstat (limited to 'RSSDP/SsdpDeviceIcon.cs')
-rw-r--r--RSSDP/SsdpDeviceIcon.cs50
1 files changed, 0 insertions, 50 deletions
diff --git a/RSSDP/SsdpDeviceIcon.cs b/RSSDP/SsdpDeviceIcon.cs
deleted file mode 100644
index 3ed707c80..000000000
--- a/RSSDP/SsdpDeviceIcon.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Rssdp
-{
- /// <summary>
- /// Represents an icon published by an <see cref="SsdpDevice"/>.
- /// </summary>
- public sealed class SsdpDeviceIcon
- {
- /// <summary>
- /// The mime type for the image data returned by the <see cref="Url"/> property.
- /// </summary>
- /// <remarks>
- /// <para>Required. Icon's MIME type (cf. RFC 2045, 2046, and 2387). Single MIME image type. At least one icon should be of type “image/png” (Portable Network Graphics, see IETF RFC 2083).</para>
- /// </remarks>
- /// <seealso cref="Url"/>
- public string MimeType { get; set; }
-
- /// <summary>
- /// The URL that can be called with an HTTP GET command to retrieve the image data.
- /// </summary>
- /// <remarks>
- /// <para>Required. May be relative to base URL. Specified by UPnP vendor. Single URL.</para>
- /// </remarks>
- /// <seealso cref="MimeType"/>
- public Uri Url { get; set; }
-
- /// <summary>
- /// The width of the image in pixels.
- /// </summary>
- /// <remarks><para>Required, must be greater than zero.</para></remarks>
- public int Width { get; set; }
-
- /// <summary>
- /// The height of the image in pixels.
- /// </summary>
- /// <remarks><para>Required, must be greater than zero.</para></remarks>
- public int Height { get; set; }
-
- /// <summary>
- /// The colour depth of the image.
- /// </summary>
- /// <remarks><para>Required, must be greater than zero.</para></remarks>
- public int ColorDepth { get; set; }
-
- }
-}