A function that reads or writes the contents of a protected object and produces some result.

Namespace:  Gallio.Common.Concurrency
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public delegate TResult WriteFunc<T, TResult>(
	T obj
)
Visual Basic (Declaration)
Public Delegate Function WriteFunc(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.

See Also