CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
AutoNonSerializedAttribute.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="AutoNonSerializedAttribute.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Indicate that a field or property should be excluded from auto serialization</summary>
7//-----------------------------------------------------------------------
8using System;
9
11{
12
16 [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
17 public class AutoNonSerializedAttribute : Attribute
18 {
19 }
20
21}
Indicate that a public field or property should be excluded from auto serialization