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

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//  
// represents the response object - either entity or link
//  
//--------------------------------------------------------------------- 

namespace System.Data.Services.Client 
{
    /// 
    /// represents the response object - either entity or link
    ///  
    public abstract class Descriptor
    { 
        /// State of the modified entity or link. 
        private readonly EntityStates state;
 
        /// 
        /// constructor
        /// 
        /// entity state 
        internal Descriptor(EntityStates state)
        { 
            this.state = state; 
        }
 
        /// 
        /// returns the state of the entity or link object in response.
        /// 
        public EntityStates State 
        {
            get 
            { 
                return this.state;
            } 
        }
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//  
// represents the response object - either entity or link
//  
//--------------------------------------------------------------------- 

namespace System.Data.Services.Client 
{
    /// 
    /// represents the response object - either entity or link
    ///  
    public abstract class Descriptor
    { 
        /// State of the modified entity or link. 
        private readonly EntityStates state;
 
        /// 
        /// constructor
        /// 
        /// entity state 
        internal Descriptor(EntityStates state)
        { 
            this.state = state; 
        }
 
        /// 
        /// returns the state of the entity or link object in response.
        /// 
        public EntityStates State 
        {
            get 
            { 
                return this.state;
            } 
        }
    }
}

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