class Func<T1,T2,T3,T4,TResult>

in global :: System

Encapsulates a method that has four parameters and returns a value of the type specified by the parameter.

  • arg1 The first parameter of the method that this delegate encapsulates.
  • arg2 The second parameter of the method that this delegate encapsulates.
  • arg3 The third parameter of the method that this delegate encapsulates.
  • arg4 The fourth parameter of the method that this delegate encapsulates.
  • 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.
  • TResult The type of the return value of the method that this delegate encapsulates.
  • Returns The return value of the method that this delegate encapsulates.

public TResult Invoke( T1 arg1, T2 arg2, T3 arg3, T4 arg4 )

😔 No documentation found.

public IAsyncResult BeginInvoke( T1 arg1, T2 arg2, T3 arg3, T4 arg4, AsyncCallback callback, object object )

😔 No documentation found.

public TResult EndInvoke( IAsyncResult result )

😔 No documentation found.

public void GetObjectData( SerializationInfo info, StreamingContext context )

😔 No documentation found.

public bool Equals( object obj )

😔 No documentation found.

public Delegate[] GetInvocationList( )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public object Target { get; }

😔 No documentation found.

public object Clone( )

😔 No documentation found.

public bool get_HasSingleTarget( )

😔 No documentation found.

public object DynamicInvoke( object[] args )

😔 No documentation found.

public MethodInfo Method { get; }

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public Func<T1,T2,T3,T4,TResult>( object object, IntPtr method )

😔 No documentation found.