Class Bindings
Bindings are used to associate a variable with a value.
public class Bindings
- Inheritance
-
Bindings
- Inherited Members
Constructors
Bindings()
public Bindings()
Properties
Instance
Gets an instance of the Bindings class.
public static Bindings Instance { get; }
Property Value
Methods
Of<TV>(string, TV)
Binds the variable to the specified value.
public TV Of<TV>(string variable, TV value) where TV : notnull
Parameters
variable
stringThe variable to bind.
value
TVThe value to which the variable should be bound.
Returns
- TV
The bound value.
Type Parameters
TV