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

    ///  
    /// 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 readonly 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)
        { 
            Util.CheckArgumentNull(mediaMemberName, "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