DataMemberAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / Serialization / System / Runtime / Serialization / DataMemberAttribute.cs / 1 / DataMemberAttribute.cs

                            //------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------

namespace System.Runtime.Serialization 
{
    [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, Inherited = false, AllowMultiple = false)] 
    public sealed class DataMemberAttribute : Attribute 
    {
        string name; 
        bool isNameSetExplicit;
        int order = -1;
        bool isRequired;
        bool emitDefaultValue = Globals.DefaultEmitDefaultValue; 

        public DataMemberAttribute() 
        { 
        }
 
        public string Name
        {
            get { return name; }
            set { name = value; isNameSetExplicit = true;} 
        }
 
        internal bool IsNameSetExplicit 
        {
            get { return isNameSetExplicit; } 
        }

        public int Order
        { 
            get { return order; }
            set 
            { 
                if (value < 0)
                    throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidDataContractException(SR.GetString(SR.OrderCannotBeNegative))); 
                order = value;
            }
        }
 
        public bool IsRequired
        { 
            get { return isRequired; } 
            set { isRequired = value; }
        } 

        public bool EmitDefaultValue
        {
            get { return emitDefaultValue; } 
            set { emitDefaultValue = value; }
        } 
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

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