Expression.GetFuncType Method

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

Creates a Type object that represents a generic System.Func delegate type that has specific type arguments. The last type argument specifies the return type of the created delegate.

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

Syntax

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

Parameters

  • typeArgs
    Type: array<System.Type[]
    An array of one to five Type objects that specify the type arguments for the System.Func delegate type.

Return Value

Type: System.Type
The type of a System.Func delegate that has the specified type arguments.

Exceptions

Exception Condition
ArgumentException

typeArgs contains less than one or more than five elements.

ArgumentNullException

typeArgs is nulla null reference (Nothing in Visual Basic).

Remarks

typeArgs must contain at least one and at most five elements.

As an example, if the elements of typeArgs represent the types T1…Tn, the resulting Type object represents the constructed delegate type System.Func<T1,…,Tn> in C# or System.Func(Of T1,…,Tn) in Visual Basic.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Windows Phone OS 7.0

Platforms

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