Expression.GetDelegateType Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets a Type object that represents a generic System.Func or System.Action delegate type that has specific type arguments.

Namespace:  System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)

Syntax

'Declaration
Public Shared Function GetDelegateType ( _
    ParamArray typeArgs As Type() _
) As Type
public static Type GetDelegateType(
    params Type[] typeArgs
)

Parameters

  • typeArgs
    Type: array<System.Type[]
    The type arguments of the delegate.

Return Value

Type: System.Type
The delegate type.

Remarks

The last type argument determines the return type of the delegate. If no Func or Action is large enough, it will generate a custom delegate type.

As with Func, the last argument is the return type. It can be set to System.Void to produce an Action.

Version Information

Silverlight

Supported in: 5, 4

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.