SchemaComplexType.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / EntityModel / SchemaObjectModel / SchemaComplexType.cs / 1305376 / SchemaComplexType.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner       [....]
// @backupOwner [....] 
//--------------------------------------------------------------------- 

using System; 
using System.Collections;
using System.Collections.Generic;
using System.Xml;
using System.Data; 
using System.Data.Metadata.Edm;
 
 
namespace System.Data.EntityModel.SchemaObjectModel
{ 
    /// 
    /// Summary description for NestedType.
    /// 
    internal sealed class SchemaComplexType : StructuredType 
    {
        #region Public Methods 
        ///  
        ///
        ///  
        /// 
        internal SchemaComplexType(Schema parentElement)
        :   base(parentElement)
        { 
            if (Schema.DataModel == SchemaDataModelOption.EntityDataModel)
                OtherContent.Add(Schema.SchemaSource); 
        } 
        #endregion
 
        #region Public Properties
        #endregion

        #region Protected Methods 
        /// 
        /// 
        ///  
        internal override void ResolveTopLevelNames()
        { 
            base.ResolveTopLevelNames();

            if ( BaseType != null )
            { 
                if ( !(BaseType is SchemaComplexType) )
                { 
                    AddError( ErrorCode.InvalidBaseType, EdmSchemaErrorSeverity.Error, 
                        System.Data.Entity.Strings.InvalidBaseTypeForNestedType(BaseType.FQName,FQName));
                } 
            }
        }
        #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