XmlReflectionMember.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Xml / System / Xml / Serialization / XmlReflectionMember.cs / 1 / XmlReflectionMember.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// [....] 
//-----------------------------------------------------------------------------
 
namespace System.Xml.Serialization { 

    using System; 

    /// 
    ///
    ///  
    ///    [To be supplied.]
    ///  
    public class XmlReflectionMember { 
        string memberName;
        Type type; 
        XmlAttributes xmlAttributes = new XmlAttributes();
        SoapAttributes soapAttributes = new SoapAttributes();
        bool isReturnValue;
        bool overrideIsNullable; 

        ///  
        ///  
        ///    [To be supplied.]
        ///  
        public Type MemberType {
            get { return type; }
            set { type = value; }
        } 

        ///  
        ///  
        ///    [To be supplied.]
        ///  
        public XmlAttributes XmlAttributes {
            get { return xmlAttributes; }
            set { xmlAttributes = value; }
        } 

        ///  
        ///  
        ///    [To be supplied.]
        ///  
        public SoapAttributes SoapAttributes {
            get { return soapAttributes; }
            set { soapAttributes = value; }
        } 

        ///  
        ///  
        ///    [To be supplied.]
        ///  
        public string MemberName {
            get { return memberName == null ? string.Empty : memberName; }
            set { memberName = value; }
        } 

        ///  
        ///  
        ///    [To be supplied.]
        ///  
        public bool IsReturnValue {
            get { return isReturnValue; }
            set { isReturnValue = value; }
        } 

        ///  
        ///  
        ///    [To be supplied.]
        ///  
        public bool OverrideIsNullable {
            get { return overrideIsNullable; }
            set { overrideIsNullable = value; }
        } 
    }
 
 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// [....] 
//-----------------------------------------------------------------------------
 
namespace System.Xml.Serialization { 

    using System; 

    /// 
    ///
    ///  
    ///    [To be supplied.]
    ///  
    public class XmlReflectionMember { 
        string memberName;
        Type type; 
        XmlAttributes xmlAttributes = new XmlAttributes();
        SoapAttributes soapAttributes = new SoapAttributes();
        bool isReturnValue;
        bool overrideIsNullable; 

        ///  
        ///  
        ///    [To be supplied.]
        ///  
        public Type MemberType {
            get { return type; }
            set { type = value; }
        } 

        ///  
        ///  
        ///    [To be supplied.]
        ///  
        public XmlAttributes XmlAttributes {
            get { return xmlAttributes; }
            set { xmlAttributes = value; }
        } 

        ///  
        ///  
        ///    [To be supplied.]
        ///  
        public SoapAttributes SoapAttributes {
            get { return soapAttributes; }
            set { soapAttributes = value; }
        } 

        ///  
        ///  
        ///    [To be supplied.]
        ///  
        public string MemberName {
            get { return memberName == null ? string.Empty : memberName; }
            set { memberName = value; }
        } 

        ///  
        ///  
        ///    [To be supplied.]
        ///  
        public bool IsReturnValue {
            get { return isReturnValue; }
            set { isReturnValue = value; }
        } 

        ///  
        ///  
        ///    [To be supplied.]
        ///  
        public bool OverrideIsNullable {
            get { return overrideIsNullable; }
            set { overrideIsNullable = value; }
        } 
    }
 
 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

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