ActionDescriptorExtensions.GetProperty<T>(ActionDescriptor) Method

Definition

Gets the value of a property from the Properties collection using the provided value of T as the key.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static T GetProperty(Microsoft::AspNetCore::Mvc::Abstractions::ActionDescriptor ^ actionDescriptor);
public static T GetProperty<T> (this Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor actionDescriptor);
public static T? GetProperty<T> (this Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor actionDescriptor);
static member GetProperty : Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor -> 'T
<Extension()>
Public Function GetProperty(Of T) (actionDescriptor As ActionDescriptor) As T

Type Parameters

T

The type of the property.

Parameters

actionDescriptor
ActionDescriptor

The action descriptor.

Returns

T

The property or the default value of T.

Applies to