aspnetcore/src/Microsoft.AspNetCore.Mvc.Core/BindPropertiesAttribute.cs

24 lines
868 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
namespace Microsoft.AspNetCore.Mvc
{
/// <summary>
/// An attribute that enables binding for all properties the decorated controller or Razor Page model defines.
/// </summary>
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public class BindPropertiesAttribute : Attribute
{
/// <summary>
/// When <c>true</c>, allows properties to be bound on GET requests. When <c>false</c>, properties
/// do not get model bound or validated on GET requests.
/// <para>
/// Defaults to <c>false</c>.
/// </para>
/// </summary>
public bool SupportsGet { get; set; }
}
}