ComplexTypeEmitter.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntityDesign / Design / System / Data / EntityModel / Emitters / ComplexTypeEmitter.cs / 1305376 / ComplexTypeEmitter.cs

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

using System; 
using System.CodeDom;
using System.Data;
using System.Data.Metadata.Edm;
using System.Data.EntityModel.SchemaObjectModel; 

 
namespace System.Data.EntityModel.Emitters 
{
    ///  
    /// Summary description for NestedTypeEmitter.
    /// 
    internal sealed class ComplexTypeEmitter : StructuredTypeEmitter
    { 
        #region Methods
        ///  
        /// 
        /// 
        ///  
        /// 
        public ComplexTypeEmitter(ClientApiGenerator generator, ComplexType complexType)
            : base(generator, complexType)
        { 
        }
 
 
        /// 
        /// Apply the attributes to this type. 
        /// 
        /// The declaration of the type that should have attributes added to it.
        protected override void EmitTypeAttributes( CodeTypeDeclaration typeDecl )
        { 
            Generator.AttributeEmitter.EmitTypeAttributes( this, typeDecl );
            base.EmitTypeAttributes( typeDecl ); 
        } 
        #endregion
        #region Protected Properties 

        /// 
        ///
        ///  
        /// 
        protected override CodeTypeReference GetBaseType() 
        { 
            CodeTypeReference baseType = base.GetBaseType();
            if (baseType == null) 
            {
                baseType = TypeReference.ComplexTypeBaseClass;
            }
            return baseType; 
        }
 
        protected override ReadOnlyMetadataCollection GetProperties() 
        {
            return Item.Properties; 
        }

        internal new ComplexType Item
        { 
            get
            { 
                return base.Item as ComplexType; 
            }
        } 

        #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.CodeDom;
using System.Data;
using System.Data.Metadata.Edm;
using System.Data.EntityModel.SchemaObjectModel; 

 
namespace System.Data.EntityModel.Emitters 
{
    ///  
    /// Summary description for NestedTypeEmitter.
    /// 
    internal sealed class ComplexTypeEmitter : StructuredTypeEmitter
    { 
        #region Methods
        ///  
        /// 
        /// 
        ///  
        /// 
        public ComplexTypeEmitter(ClientApiGenerator generator, ComplexType complexType)
            : base(generator, complexType)
        { 
        }
 
 
        /// 
        /// Apply the attributes to this type. 
        /// 
        /// The declaration of the type that should have attributes added to it.
        protected override void EmitTypeAttributes( CodeTypeDeclaration typeDecl )
        { 
            Generator.AttributeEmitter.EmitTypeAttributes( this, typeDecl );
            base.EmitTypeAttributes( typeDecl ); 
        } 
        #endregion
        #region Protected Properties 

        /// 
        ///
        ///  
        /// 
        protected override CodeTypeReference GetBaseType() 
        { 
            CodeTypeReference baseType = base.GetBaseType();
            if (baseType == null) 
            {
                baseType = TypeReference.ComplexTypeBaseClass;
            }
            return baseType; 
        }
 
        protected override ReadOnlyMetadataCollection GetProperties() 
        {
            return Item.Properties; 
        }

        internal new ComplexType Item
        { 
            get
            { 
                return base.Item as ComplexType; 
            }
        } 

        #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