Class Range
This class represents the range of values valid for an XBee setting.
Inheritance
System.Object
Range
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: XBeeLibrary.Core.Models
Assembly: XBeeLibrary.Core.dll
Syntax
public class Range
Constructors
Range(String, String)
Class constructor. Instantiates a new Range object with the provided parameters.
Declaration
public Range(string rangeMin, string rangeMax)
Parameters
Type | Name | Description |
---|---|---|
System.String | rangeMin | Minimum allowed value of the range. |
System.String | rangeMax | Maximum allowed value of the range. |
Properties
RangeMax
Maximum allowed value of the range.
Declaration
public string RangeMax { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RangeMin
Minimum allowed value of the range.
Declaration
public string RangeMin { get; set; }
Property Value
Type | Description |
---|---|
System.String |