Show / Hide Table of Contents

Class ResolvedTokenizedItem

A class for holding the resolved values of tokens to be displayed.

Inheritance
object
BindableBase
ResolvedTokenizedItem
Implements
INotifyPropertyChanged
Inherited Members
BindableBase.SetProperty<T>(ref T, T, string)
BindableBase.SetProperty<T>(ref T, T, Action, string)
BindableBase.RaisePropertyChanged(string)
BindableBase.OnPropertyChanged(PropertyChangedEventArgs)
BindableBase.PropertyChanged
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: Phoenix.Aruba
Assembly: Phoenix.Plugin.Aruba.dll
Syntax
public class ResolvedTokenizedItem : BindableBase, INotifyPropertyChanged

Constructors

View Source

ResolvedTokenizedItem(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 Source

Value

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 Source

SetResolvedValue(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.

View Source

ToString()

Overrides the ToString() method.

Declaration
public override string ToString()
Returns
Type Description
string

The value as a string.

Overrides
object.ToString()

Implements

INotifyPropertyChanged
  • View Source
In this article
Back to top Generated by DocFX