Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Executes specified Func with retries.
Namespace: Microsoft.TeamFoundation.Common
Assembly: Microsoft.TeamFoundation.Common (in Microsoft.TeamFoundation.Common.dll)
Syntax
'Declaration
Public Function InvokeFunc(Of T1, T2, T3, TResult) ( _
func As Func(Of T1, T2, T3, TResult), _
op1 As T1, _
op2 As T2, _
op3 As T3 _
) As TResult
public TResult InvokeFunc<T1, T2, T3, TResult>(
Func<T1, T2, T3, TResult> func,
T1 op1,
T2 op2,
T3 op3
)
public:
generic<typename T1, typename T2, typename T3, typename TResult>
TResult InvokeFunc(
Func<T1, T2, T3, TResult>^ func,
T1 op1,
T2 op2,
T3 op3
)
member InvokeFunc :
func:Func<'T1, 'T2, 'T3, 'TResult> *
op1:'T1 *
op2:'T2 *
op3:'T3 -> 'TResult
JScript does not support generic types or methods.
Type Parameters
- T1
- T2
- T3
- TResult
Parameters
- func
Type: System.Func<T1, T2, T3, TResult>
- op1
Type: T1
- op2
Type: T2
- op3
Type: T3
Return Value
Type: TResult
.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.