Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Expression::GetDelegateType Method (array<Type^>^)

 

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)

public:
static Type^ GetDelegateType(
	... array<Type^>^ typeArgs
)

Parameters

typeArgs
Type: array<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.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft