EntityViewGenerationAttribute.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 / Mapping / EntityViewGenerationAttribute.cs / 2 / EntityViewGenerationAttribute.cs

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

using System; 
namespace System.Data.Mapping
{
    /// 
    /// Attribute to mark the assemblies that contain the generated views type. 
    /// 
    [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] 
    public sealed class EntityViewGenerationAttribute : System.Attribute 
    {
        #region Constructors 
        /// 
        /// Constructor for EntityViewGenerationAttribute
        /// 
        public EntityViewGenerationAttribute(Type viewGenerationType) 
        {
            EntityUtil.CheckArgumentNull(viewGenerationType, "viewGenType"); 
            m_viewGenType = viewGenerationType; 
        }
        #endregion 

        #region Fields
        private Type m_viewGenType;
        #endregion 

        #region Properties 
        public Type ViewGenerationType 
        {
            get { return m_viewGenType; } 
        }
        #endregion
    }
} 


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner       [....]
// @backupOwner [....] 
//--------------------------------------------------------------------- 

using System; 
namespace System.Data.Mapping
{
    /// 
    /// Attribute to mark the assemblies that contain the generated views type. 
    /// 
    [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] 
    public sealed class EntityViewGenerationAttribute : System.Attribute 
    {
        #region Constructors 
        /// 
        /// Constructor for EntityViewGenerationAttribute
        /// 
        public EntityViewGenerationAttribute(Type viewGenerationType) 
        {
            EntityUtil.CheckArgumentNull(viewGenerationType, "viewGenType"); 
            m_viewGenType = viewGenerationType; 
        }
        #endregion 

        #region Fields
        private Type m_viewGenType;
        #endregion 

        #region Properties 
        public Type ViewGenerationType 
        {
            get { return m_viewGenType; } 
        }
        #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