GetDelegateType Method
TOC
Collapse the table of content
Expand the table of content

Expression.GetDelegateType Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

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)

'Declaration
Public Shared Function GetDelegateType ( _
	ParamArray typeArgs As Type() _
) As Type

Parameters

typeArgs
Type: System.Type ()
The type arguments of the delegate.

Return Value

Type: System.Type
The delegate type.

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.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft