Executes specified action with retries.
Namespace:  Microsoft.TeamFoundation.Common
Assembly:  Microsoft.TeamFoundation.Common (in Microsoft.TeamFoundation.Common.dll)
Syntax
'Declaration
Public Sub Invoke(Of T1, T2, T3) ( _
    action As Action(Of T1, T2, T3), _
    op1 As T1, _
    op2 As T2, _
    op3 As T3 _
)
public void Invoke<T1, T2, T3>(
    Action<T1, T2, T3> action,
    T1 op1,
    T2 op2,
    T3 op3
)
public:
generic<typename T1, typename T2, typename T3>
void Invoke(
    Action<T1, T2, T3>^ action, 
    T1 op1, 
    T2 op2, 
    T3 op3
)
member Invoke : 
        action:Action<'T1, 'T2, 'T3> * 
        op1:'T1 * 
        op2:'T2 * 
        op3:'T3 -> unit
JScript does not support generic types or methods.
Type Parameters
- T1
- T2
- T3
Parameters
- action
 Type: System.Action<T1, T2, T3>
- op1
 Type: T1
- op2
 Type: T2
- op3
 Type: T3
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.