Class SsdpDeviceProperty
Represents a custom property of an SsdpDevice.
Inheritance
System.Object
SsdpDeviceProperty
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Rssdp
Assembly: cs.temp.dll.dll
Syntax
public sealed class SsdpDeviceProperty
Constructors
SsdpDeviceProperty(String, String)
Partial constructor.
Declaration
public SsdpDeviceProperty(string namespace, string name)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | namespace | The namespace this property exists in. |
| System.String | name | The name of this property. |
SsdpDeviceProperty(String, String, String)
Full constructor.
Declaration
public SsdpDeviceProperty(string namespace, string name, string value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | namespace | The namespace this property exists in. |
| System.String | name | The name of this property. |
| System.String | value | The value of this property. |
Properties
FullName
Returns the full name of this property (namespace and name).
Declaration
public string FullName { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
Name
Sets or returns the name of this property.
Declaration
public string Name { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
Namespace
Sets or returns the namespace this property exists in.
Declaration
public string Namespace { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
Value
Sets or returns the value of this property.
Declaration
public string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |