CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
NonSerializedAttribute.cs
Go to the documentation of this file.
1#if !NETSTANDARD1_6 && !WINDOWS_UWP
2#if NETFX_CORE
3//-----------------------------------------------------------------------
4// <copyright file="NonSerializedAttribute.cs" company="Marimer LLC">
5// Copyright (c) Marimer LLC. All rights reserved.
6// Website: https://cslanet.com
7// </copyright>
8// <summary>Indicates that a field should not be</summary>
9//-----------------------------------------------------------------------
10using System;
11
12namespace System
13{
18 [AttributeUsage(AttributeTargets.Field)]
19 public class NonSerializedAttribute : Attribute
20 {
21 }
22}
23#else
24[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.NonSerializedAttribute))]
25#endif
26#endif