Class ParameterRange
A class containing the range of allowed parameter values.
Inherited Members
Namespace: Microsoft.XboxStudios.BotBrain
Assembly: BotBrain.Abstractions.dll
Syntax
public class ParameterRange
Properties
View SourceHasValues
Gets a value indicating whether or not there are values for the parameter.
Declaration
public bool HasValues { get; }
Property Value
Type | Description |
---|---|
bool |
Maximum
Gets or sets the maximum value for the parameter.
Declaration
public object? Maximum { get; set; }
Property Value
Type | Description |
---|---|
object |
Minimum
Gets or sets the minimum value for the parameter.
Declaration
public object? Minimum { get; set; }
Property Value
Type | Description |
---|---|
object |
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> |