File: EndpointParameterDescriptor.cs | Web Access |
Project: src\src\Mvc\Mvc.ApiExplorer\src\Microsoft.AspNetCore.Mvc.ApiExplorer.csproj (Microsoft.AspNetCore.Mvc.ApiExplorer) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Reflection; using Microsoft.AspNetCore.Mvc.Abstractions; using Microsoft.AspNetCore.Mvc.Infrastructure; namespace Microsoft.AspNetCore.Mvc.ApiExplorer; internal sealed class EndpointParameterDescriptor : ParameterDescriptor, IParameterInfoParameterDescriptor { public ParameterInfo ParameterInfo { get; set; } = default!; } |