ReferencedType.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / xsp / System / Web / Extensions / Compilation / WCFModel / ReferencedType.cs / 1 / ReferencedType.cs

                            //------------------------------------------------------------------------------ 
// 
//   Copyright (C) Microsoft Corporation. All Rights Reserved.
// 
//----------------------------------------------------------------------------- 

 
using System; 
using System.Collections.Generic;
using System.IO; 
using System.Text;
using System.Xml;
using System.Xml.Schema;
using XmlSerialization = System.Xml.Serialization; 

#if WEB_EXTENSIONS_CODE 
namespace System.Web.Compilation.WCFModel 
#else
namespace Microsoft.VSDesigner.WCFModel 
#endif
{
    /// 
    ///  
    /// 
#if WEB_EXTENSIONS_CODE 
    internal class ReferencedType 
#else
    [CLSCompliant(true)] 
    public class ReferencedType
#endif
    {
        private string m_TypeName; 

        ///  
        /// assembly qualified type name 
        /// 
        ///  
        /// 
        [XmlSerialization.XmlAttribute()]
        public string TypeName {
            get { 
                return m_TypeName;
            } 
            set { 
                m_TypeName = value;
            } 
        }
    }
}
 

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

 
using System; 
using System.Collections.Generic;
using System.IO; 
using System.Text;
using System.Xml;
using System.Xml.Schema;
using XmlSerialization = System.Xml.Serialization; 

#if WEB_EXTENSIONS_CODE 
namespace System.Web.Compilation.WCFModel 
#else
namespace Microsoft.VSDesigner.WCFModel 
#endif
{
    /// 
    ///  
    /// 
#if WEB_EXTENSIONS_CODE 
    internal class ReferencedType 
#else
    [CLSCompliant(true)] 
    public class ReferencedType
#endif
    {
        private string m_TypeName; 

        ///  
        /// assembly qualified type name 
        /// 
        ///  
        /// 
        [XmlSerialization.XmlAttribute()]
        public string TypeName {
            get { 
                return m_TypeName;
            } 
            set { 
                m_TypeName = 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