Class ResolvedTokenizedItem
A class for holding the resolved values of tokens to be displayed.
Implements
Inherited Members
Namespace: Phoenix.Aruba
Assembly: Phoenix.Plugin.Aruba.dll
Syntax
public class ResolvedTokenizedItem : BindableBase, INotifyPropertyChanged
Constructors
View SourceResolvedTokenizedItem(object, bool, TokenReference)
Initializes a new instance of the ResolvedTokenizedItem class.
Declaration
public ResolvedTokenizedItem(object value, bool isAdHoc, TokenReference tokenReference)
Parameters
Type | Name | Description |
---|---|---|
object | value | The value of the token. |
bool | isAdHoc | Whether this token is an AdHoc token. |
TokenReference | tokenReference | The token reference to store for telemetry use. |
Properties
View SourceValue
Gets or sets the resolved value.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
object |
Remarks
The setter should only be used when the user sets the value.
Methods
View SourceSetResolvedValue(object)
Sets the resolved value. To be called when resolver is setting the value instead of the user.
Declaration
public void SetResolvedValue(object value)
Parameters
Type | Name | Description |
---|---|---|
object | value | The resolved value. |
ToString()
Overrides the ToString() method.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The value as a string. |