aboutsummaryrefslogtreecommitdiff
path: root/RSSDP/SsdpDeviceProperty.cs
diff options
context:
space:
mode:
Diffstat (limited to 'RSSDP/SsdpDeviceProperty.cs')
-rw-r--r--RSSDP/SsdpDeviceProperty.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/RSSDP/SsdpDeviceProperty.cs b/RSSDP/SsdpDeviceProperty.cs
deleted file mode 100644
index 3abcfb9aa..000000000
--- a/RSSDP/SsdpDeviceProperty.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Rssdp
-{
- /// <summary>
- /// Represents a custom property of an <see cref="SsdpDevice"/>.
- /// </summary>
- public sealed class SsdpDeviceProperty
- {
-
- /// <summary>
- /// Sets or returns the namespace this property exists in.
- /// </summary>
- public string Namespace { get; set; }
-
- /// <summary>
- /// Sets or returns the name of this property.
- /// </summary>
- public string Name { get; set; }
-
- /// <summary>
- /// Returns the full name of this property (namespace and name).
- /// </summary>
- public string FullName { get { return String.IsNullOrEmpty(this.Namespace) ? this.Name : this.Namespace + ":" + this.Name; } }
-
- /// <summary>
- /// Sets or returns the value of this property.
- /// </summary>
- public string Value { get; set; }
-
- }
-}