Interface IValueReceiver<T>
Binder that can receive a value.
Namespace: FastenUp.Runtime.Binders
Assembly: cs.temp.dll.dll
Syntax
public interface IValueReceiver<T> : IBinder<T>, IBinder
Type Parameters
Name | Description |
---|---|
T | Type of the value that will be set by the binder component |
Methods
SetValue(T)
Sets the value to the binder.
Declaration
void SetValue(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value | The value that will be set to the binder. |