Table of Contents

Class UserProperty

Namespace
nanoFramework.M2Mqtt.Messages
Assembly
nanoFramework.M2Mqtt.Core.dll

A user property is a key value string pair, v5.0 only.

public class UserProperty
Inheritance
UserProperty
Inherited Members
Extension Methods

Constructors

UserProperty(string, string)

Initializes a new instance of the UserProperty class with the specified name and value.

public UserProperty(string name, string value)

Parameters

name string

The name of the property.

value string

The value of the property.

Properties

Name

Gets or sets the name.

public string Name { get; set; }

Property Value

string

Value

Gets or sets the value.

public string Value { get; set; }

Property Value

string