Interface IRefBinder
Implementation of this interface provides the ability to bind object references to a IMediator
Namespace: FastenUp.Runtime.Binders.References
Assembly: cs.temp.dll.dll
Syntax
public interface IRefBinder : IBinder
Methods
TryGetReference<T>(out T)
Tries to get the reference of type T
from the binder.
Declaration
bool TryGetReference<T>(out T reference)
Parameters
Type | Name | Description |
---|---|---|
T | reference | The reference of type |
Returns
Type | Description |
---|---|
Boolean | True if the reference was found, otherwise false. |
Type Parameters
Name | Description |
---|---|
T | Type of the reference |