Show / Hide Table of Contents

Class ParameterRange

A class containing the range of allowed parameter values.

Inheritance
object
ParameterRange
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Microsoft.XboxStudios.BotBrain
Assembly: BotBrain.Abstractions.dll
Syntax
public class ParameterRange

Properties

View Source

HasValues

Gets a value indicating whether or not there are values for the parameter.

Declaration
public bool HasValues { get; }
Property Value
Type Description
bool
View Source

Maximum

Gets or sets the maximum value for the parameter.

Declaration
public object? Maximum { get; set; }
Property Value
Type Description
object
View Source

Minimum

Gets or sets the minimum value for the parameter.

Declaration
public object? Minimum { get; set; }
Property Value
Type Description
object
View Source

Values

Gets or sets the values that are allowed for the parameter.

Declaration
public IEnumerable<object>? Values { get; set; }
Property Value
Type Description
IEnumerable<object>
  • View Source
In this article
Back to top Generated by DocFX