NonSerializedAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / NonSerializedAttribute.cs / 1 / NonSerializedAttribute.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*============================================================
** 
** Class: NonSerializedAttribute 
**
** 
** Purpose: Used to mark a member as being not-serialized
**
**
============================================================*/ 
namespace System
{ 
 	using System.Reflection; 

    [AttributeUsage(AttributeTargets.Field, Inherited=false)] 
[System.Runtime.InteropServices.ComVisible(true)]
    public sealed class NonSerializedAttribute : Attribute
    {
		internal static Attribute GetCustomAttribute(RuntimeFieldInfo field) 
        {
            if ((field.Attributes & FieldAttributes.NotSerialized) == 0) 
                return null; 

            return new NonSerializedAttribute(); 
        }

		internal static bool IsDefined(RuntimeFieldInfo field)
        { 
            return (field.Attributes & FieldAttributes.NotSerialized) != 0;
        } 
 
        public NonSerializedAttribute() { }
    } 
}


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK