GQIDiscrete<T> class
Definition
- Namespace:
Skyline.DataMiner.Core.GQI.Extensions - NuGet:
Skyline.DataMiner.Core.GQI.Extensions
Available from DataMiner Web 10.5.0 [CU16]/10.6.0 [CU4]/10.6.7 onwards.
Represents a single discrete value option for a column, pairing an underlying value with a user-friendly display string.
Tip
See also: Defining discrete values for a column.
Type parameters
T: The value type of the discrete, matching the column it belongs to.
Constructor
| Constructor | Description |
|---|---|
| GQIDiscrete(string name, T value) | Creates a new discrete value. |
Properties
| Property | Type | Description |
|---|---|---|
| Name | string | The display text shown to the user for this discrete option. |
| Value | T | The underlying value of this discrete option. |
Example
using Skyline.DataMiner.Core.GQI.Extensions;
// Discrete for an exception "error" state.
var error = new GQIDiscrete<int>("Error", -1);