A function that reads the contents of a protected object and produces some result. It should not modify the object in any way.
Namespace:
Gallio.Common.ConcurrencyAssembly: Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)
Syntax
| C# |
|---|
public delegate TResult ReadFunc<T, TResult>( T obj ) |
| Visual Basic (Declaration) |
|---|
Public Delegate Function ReadFunc(Of T, TResult) ( _ obj As T _ ) As TResult |
Parameters
- obj
- Type: T
The object.
Type Parameters
- T
- The type of object.
- TResult
- The result type.
