| 123456789101112131415161718192021 |
- using System;
- namespace Abp.Web.Models
- {
- /// <summary>
- /// A shortcut for <see cref="WrapResultAttribute"/> to disable wrapping by default.
- /// It sets false to <see cref="WrapResultAttribute.WrapOnSuccess"/> and <see cref="WrapResultAttribute.WrapOnError"/> properties.
- /// </summary>
- [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface | AttributeTargets.Method)]
- public class DontWrapResultAttribute : WrapResultAttribute
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="DontWrapResultAttribute"/> class.
- /// </summary>
- public DontWrapResultAttribute()
- : base(false, false)
- {
- }
- }
- }
|