DataServiceEntityAttribute.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 / DataWeb / Client / System / Data / Services / Client / DataServiceEntityAttribute.cs / 1305376 / DataServiceEntityAttribute.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//  
//      Clr Attribute mark a class as entity
//  
// 
// @owner  [....]
//--------------------------------------------------------------------- 
namespace System.Data.Services.Common
{
    using System;
    using System.Collections.ObjectModel; 
    using System.Data.Services.Client;
    using System.Linq; 
 
    /// 
    /// Attribute to mark a class as entity 
    /// 
    [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
    public sealed class DataServiceEntityAttribute : System.Attribute
    { 
        /// 
        /// Constructor 
        ///  
        public DataServiceEntityAttribute()
        { 
        }
    }
}

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