Encapsulates a method that takes one parameter and does not return a value.
Namespace: GroupDocs.Viewer.CommonAssembly: GroupDocs.Viewer (in GroupDocs.Viewer.dll) Version: 21.2
Syntaxpublic delegate void Action<in T1>(
T1 arg1
)
Public Delegate Sub Action(Of In T1) (
arg1 As T1
)
generic<typename T1>
public delegate void Action(
T1 arg1
)
type Action =
delegate of
arg1 : 'T1 -> unit
Parameters
- arg1
- Type: T1
The first parameter of the method that this delegate encapsulates.
Type Parameters
- T1
- The type of the first parameter of the method that this delegate encapsulates.
See Also