Interface IBinding<T>
Denotes a binding of type T
Namespace: NMF.Expressions
Assembly: NMF.Expressions.Utilities.dll
Syntax
public interface IBinding<T>
Type Parameters
Name | Description |
---|---|
T | The type of the object that is bound |
Methods
| Edit this page View SourceBind(T)
Executes the binding for the given element
Declaration
IDisposable Bind(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The element that should be bound |
Returns
Type | Description |
---|---|
IDisposable | A disposable instance. When disposed, the binding for the provided element ends. |