Delegate Action<T1, T2, T3, T4, T5, T6, T7>
Encapsulates a method that has 7 parameters and does not return a value.
Namespace: Telerik.JustMock
Assembly: Telerik.JustMock.dll
Syntax
public delegate void Action<T1, T2, T3, T4, T5, T6, T7>(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7);
Parameters
|
T1
arg1
|
|
T2
arg2
|
|
T3
arg3
|
|
T4
arg4
|
|
T5
arg5
|
|
T6
arg6
|
|
T7
arg7
|
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 |
Constructors
Action(Object, IntPtr)
Declaration
public Action(object object, IntPtr method)
Parameters
|
System.Object
object
|
|
System.IntPtr
method
|
Methods
BeginInvoke(T1, T2, T3, T4, T5, T6, T7, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, AsyncCallback callback, object object)
Parameters
|
T1
arg1
|
|
T2
arg2
|
|
T3
arg3
|
|
T4
arg4
|
|
T5
arg5
|
|
T6
arg6
|
|
T7
arg7
|
|
System.AsyncCallback
callback
|
|
System.Object
object
|
Returns
|
System.IAsyncResult
|
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
|
System.IAsyncResult
result
|
Invoke(T1, T2, T3, T4, T5, T6, T7)
Declaration
public virtual void Invoke(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7)
Parameters
|
T1
arg1
|
|
T2
arg2
|
|
T3
arg3
|
|
T4
arg4
|
|
T5
arg5
|
|
T6
arg6
|
|
T7
arg7
|