Delegate Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>
Encapsulates a method that has 15 parameters and returns a value of the type specified by TResult
parameter.
Namespace: Telerik.JustMock
Assembly: Telerik.JustMock.dll
Syntax
public delegate TResult Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15);
Parameters
T1
arg1
|
T2
arg2
|
T3
arg3
|
T4
arg4
|
T5
arg5
|
T6
arg6
|
T7
arg7
|
T8
arg8
|
T9
arg9
|
T10
arg10
|
T11
arg11
|
T12
arg12
|
T13
arg13
|
T14
arg14
|
T15
arg15
|
Returns
TResult
|
Type Parameters
T1
The type of the first parameter of the method that this delegate encapsulates |
T2
The type of the second parameter of the method that this delegate encapsulates |
T3
The type of the third parameter of the method that this delegate encapsulates |
T4
The type of the fourth parameter of the method that this delegate encapsulates |
T5
The type of the fifth parameter of the method that this delegate encapsulates |
T6
The type of the sixth parameter of the method that this delegate encapsulates |
T7
The type of the seventh parameter of the method that this delegate encapsulates |
T8
The type of the eighth parameter of the method that this delegate encapsulates |
T9
The type of the ninth parameter of the method that this delegate encapsulates |
T10
The type of the tenth parameter of the method that this delegate encapsulates |
T11
The type of the eleventh parameter of the method that this delegate encapsulates |
T12
The type of the twelveth parameter of the method that this delegate encapsulates |
T13
The type of the thirteenth parameter of the method that this delegate encapsulates |
T14
The type of the fourteenth parameter of the method that this delegate encapsulates |
T15
The type of the fifteenth parameter of the method that this delegate encapsulates |
TResult
Type of the return value of the method that this delegate encapsulates. |
Constructors
Func(Object, IntPtr)
Declaration
public Func(object object, IntPtr method)
Parameters
System.Object
object
|
System.IntPtr
method
|
Methods
BeginInvoke(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, AsyncCallback callback, object object)
Parameters
T1
arg1
|
T2
arg2
|
T3
arg3
|
T4
arg4
|
T5
arg5
|
T6
arg6
|
T7
arg7
|
T8
arg8
|
T9
arg9
|
T10
arg10
|
T11
arg11
|
T12
arg12
|
T13
arg13
|
T14
arg14
|
T15
arg15
|
System.AsyncCallback
callback
|
System.Object
object
|
Returns
System.IAsyncResult
|
EndInvoke(IAsyncResult)
Declaration
public virtual TResult EndInvoke(IAsyncResult result)
Parameters
System.IAsyncResult
result
|
Returns
TResult
|
Invoke(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)
Declaration
public virtual TResult Invoke(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15)
Parameters
T1
arg1
|
T2
arg2
|
T3
arg3
|
T4
arg4
|
T5
arg5
|
T6
arg6
|
T7
arg7
|
T8
arg8
|
T9
arg9
|
T10
arg10
|
T11
arg11
|
T12
arg12
|
T13
arg13
|
T14
arg14
|
T15
arg15
|
Returns
TResult
|