SingleResultAttribute.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 / Server / System / Data / Services / SingleResultAttribute.cs / 1 / SingleResultAttribute.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//  
//      Provides a class to decorate custom service operations with
//      a single-result attribute. 
//  
//
// @owner  [....] 
//---------------------------------------------------------------------

namespace System.Data.Services
{ 
    using System;
    using System.Diagnostics; 
    using System.Reflection; 

    ///  
    /// Use this attribute on a DataService service operation method
    /// to indicate than the IQueryable returned should contain a single element.
    /// 
    [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)] 
    public sealed class SingleResultAttribute : Attribute
    { 
        /// Declares a new  instance. 
        public SingleResultAttribute()
        { 
        }

        /// Checks whether the specified method has a SingleResultAttribute declared on it.
        /// Method to check. 
        /// 
        /// true if the specified method (in its declared type or in an 
        /// ancestor declaring the type) has the SingleResultAttribute set. 
        /// 
        internal static bool MethodHasSingleResult(MethodInfo method) 
        {
            Debug.Assert(method != null, "method != null");
            return method.GetCustomAttributes(typeof(SingleResultAttribute), true).Length > 0;
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//  
//      Provides a class to decorate custom service operations with
//      a single-result attribute. 
//  
//
// @owner  [....] 
//---------------------------------------------------------------------

namespace System.Data.Services
{ 
    using System;
    using System.Diagnostics; 
    using System.Reflection; 

    ///  
    /// Use this attribute on a DataService service operation method
    /// to indicate than the IQueryable returned should contain a single element.
    /// 
    [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)] 
    public sealed class SingleResultAttribute : Attribute
    { 
        /// Declares a new  instance. 
        public SingleResultAttribute()
        { 
        }

        /// Checks whether the specified method has a SingleResultAttribute declared on it.
        /// Method to check. 
        /// 
        /// true if the specified method (in its declared type or in an 
        /// ancestor declaring the type) has the SingleResultAttribute set. 
        /// 
        internal static bool MethodHasSingleResult(MethodInfo method) 
        {
            Debug.Assert(method != null, "method != null");
            return method.GetCustomAttributes(typeof(SingleResultAttribute), true).Length > 0;
        } 
    }
} 

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