| File: Infrastructure\PageBoundPropertyDescriptor.cs | Web Access |
| Project: src\aspnetcore\src\Mvc\Mvc.RazorPages\src\Microsoft.AspNetCore.Mvc.RazorPages.csproj (Microsoft.AspNetCore.Mvc.RazorPages) |
// 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.RazorPages.Infrastructure; /// <summary> /// Describes a page bound property. /// </summary> public class PageBoundPropertyDescriptor : ParameterDescriptor, IPropertyInfoParameterDescriptor { /// <summary> /// Gets or sets the <see cref="System.Reflection.PropertyInfo"/> for this property. /// </summary> public PropertyInfo Property { get; set; } = default!; PropertyInfo IPropertyInfoParameterDescriptor.PropertyInfo => Property; }