ActionDescriptorExtensions.GetProperty<T>(ActionDescriptor) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
.