An action that reads the contents of a protected object. It should not modify the object in any way.

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

Syntax

C#
public delegate void ReadAction<T>(
	T obj
)
Visual Basic (Declaration)
Public Delegate Sub ReadAction(Of T) ( _
	obj As T _
)

Parameters

obj
Type: T
The object.

Type Parameters

T
The type of object.

See Also