Action<T1, T2, T3> Delegate
Namespace: Microsoft.TeamFoundation.Server.Core
Assembly: Microsoft.TeamFoundation.Server.Core (in Microsoft.TeamFoundation.Server.Core.dll)
Syntax
'Declaration
Public Delegate Sub Action(Of In T1, In T2, In T3) ( _
arg1 As T1, _
arg2 As T2, _
arg3 As T3 _
)
public delegate void Action<in T1, in T2, in T3>(
T1 arg1,
T2 arg2,
T3 arg3
)
generic<typename T1, typename T2, typename T3>
public delegate void Action(
T1 arg1,
T2 arg2,
T3 arg3
)
type Action =
delegate of
arg1:'T1 *
arg2:'T2 *
arg3:'T3 -> unit
JScript does not support generic types or methods.
Type Parameters
- inT1
This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
- inT2
- inT3
Parameters
- arg1
Type: T1
- arg2
Type: T2
- arg3
Type: T3