SchemaType.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataEntity / System / Data / EntityModel / SchemaObjectModel / SchemaType.cs / 2 / SchemaType.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner       [....]
// @backupOwner [....] 
//--------------------------------------------------------------------- 
using System;
using System.Collections; 
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Xml;
using System.Data; 

namespace System.Data.EntityModel.SchemaObjectModel 
{ 
    /// 
    /// Summary description for SchemaType. 
    /// 
    internal abstract class SchemaType : SchemaElement
    {
        #region Public Properties 

        ///  
        /// Gets the Namespace that this type is in. 
        /// 
        ///  
        public string Namespace
        {
            get
            { 
                return Schema.Namespace;
            } 
        } 

        ///  
        ///
        /// 
        public override string Identity
        { 
            get
            { 
                return Namespace + "." + Name; 
            }
        } 

        /// 
        ///
        ///  
        public override string FQName
        { 
            get 
            {
                return Namespace + "." + Name; 
            }
        }
        #endregion
 
        #region Protected Methods
        ///  
        /// 
        /// 
        ///  
        internal SchemaType(Schema parentElement)
        :   base(parentElement)
        {
        } 

 
        #endregion 

 
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner       [....]
// @backupOwner [....] 
//--------------------------------------------------------------------- 
using System;
using System.Collections; 
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Xml;
using System.Data; 

namespace System.Data.EntityModel.SchemaObjectModel 
{ 
    /// 
    /// Summary description for SchemaType. 
    /// 
    internal abstract class SchemaType : SchemaElement
    {
        #region Public Properties 

        ///  
        /// Gets the Namespace that this type is in. 
        /// 
        ///  
        public string Namespace
        {
            get
            { 
                return Schema.Namespace;
            } 
        } 

        ///  
        ///
        /// 
        public override string Identity
        { 
            get
            { 
                return Namespace + "." + Name; 
            }
        } 

        /// 
        ///
        ///  
        public override string FQName
        { 
            get 
            {
                return Namespace + "." + Name; 
            }
        }
        #endregion
 
        #region Protected Methods
        ///  
        /// 
        /// 
        ///  
        internal SchemaType(Schema parentElement)
        :   base(parentElement)
        {
        } 

 
        #endregion 

 
    }
}

// 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