Delegate TesterFunc<TResult, TSuccess>
Encapsulates a method and returns a value that indicates success of the type specified by the TSuccess
parameter and returns a out result value of the type specified by the TResult
parameter.
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public delegate TSuccess TesterFunc<TResult, out TSuccess>(out TResult result);
Parameters
Type | Name | Description |
---|---|---|
TResult | result | The result of the method that this function delegate encapsulates. |
Returns
Type | Description |
---|---|
TSuccess | The return value that indicates success of the method that this function delegate encapsulates. |
Type Parameters
Name | Description |
---|---|
TResult | The type of the out result value of the method that this function delegate encapsulates. |
TSuccess | The type of the return value that indicates success of the method that this function delegate encapsulates. |