MediaEntryAttribute.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 / MediaEntryAttribute.cs / 1 / MediaEntryAttribute.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//  
// Attribute to denote entity types describing a media entry
//  
//--------------------------------------------------------------------- 

namespace System.Data.Services.Client 
{
    using System;
    using System.Diagnostics;
 
    /// 
    /// This class marks a type that represents an Astoria client entity 
    /// such that the Astoria client will treat it as a media entry 
    /// according to ATOM's "media link entry" concept.
    ///  
    [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
    public sealed class MediaEntryAttribute : Attribute
    {
        /// Name of the member that contains the data for the media entry 
        private string mediaMemberName;
 
        ///  
        /// Creates a new MediaEntryAttribute attribute and sets the name
        /// of the member that contains the actual data of the media entry 
        /// (e.g. a byte[] containing a picture, a string containing HTML, etc.)
        /// 
        /// Name of the member that contains the data for the media entry
        public MediaEntryAttribute(string mediaMemberName) 
        {
            this.mediaMemberName = mediaMemberName; 
        } 

        /// Name of the member that contains the data for the media entry 
        public string MediaMemberName
        {
            get { return this.mediaMemberName; }
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//  
// Attribute to denote entity types describing a media entry
//  
//--------------------------------------------------------------------- 

namespace System.Data.Services.Client 
{
    using System;
    using System.Diagnostics;
 
    /// 
    /// This class marks a type that represents an Astoria client entity 
    /// such that the Astoria client will treat it as a media entry 
    /// according to ATOM's "media link entry" concept.
    ///  
    [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
    public sealed class MediaEntryAttribute : Attribute
    {
        /// Name of the member that contains the data for the media entry 
        private string mediaMemberName;
 
        ///  
        /// Creates a new MediaEntryAttribute attribute and sets the name
        /// of the member that contains the actual data of the media entry 
        /// (e.g. a byte[] containing a picture, a string containing HTML, etc.)
        /// 
        /// Name of the member that contains the data for the media entry
        public MediaEntryAttribute(string mediaMemberName) 
        {
            this.mediaMemberName = mediaMemberName; 
        } 

        /// Name of the member that contains the data for the media entry 
        public string MediaMemberName
        {
            get { return this.mediaMemberName; }
        } 
    }
} 

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