QueryOperationResponseOfT.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 / QueryOperationResponseOfT.cs / 2 / QueryOperationResponseOfT.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//  
// Response to a batched query.
//  
//--------------------------------------------------------------------- 

namespace System.Data.Services.Client 
{
    using System.Collections;
    using System.Collections.Generic;
 
    /// 
    /// Response to a batched query. 
    ///  
    /// The type to construct for the request results
    [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1710", Justification = "required for this feature")] 
    public sealed class QueryOperationResponse : QueryOperationResponse, IEnumerable
    {
        /// 
        /// constructor 
        /// 
        /// HTTP headers 
        /// original query 
        /// retrieved objects
        internal QueryOperationResponse(Dictionary headers, DataServiceRequest query, IEnumerable results) 
            : base(headers, query, results)
        {
        }
 
        /// Results from a query
        /// enumerator of objects in query 
        public new IEnumerator GetEnumerator() 
        {
            return ((IEnumerable)this.Results).GetEnumerator(); 
        }
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//  
// Response to a batched query.
//  
//--------------------------------------------------------------------- 

namespace System.Data.Services.Client 
{
    using System.Collections;
    using System.Collections.Generic;
 
    /// 
    /// Response to a batched query. 
    ///  
    /// The type to construct for the request results
    [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1710", Justification = "required for this feature")] 
    public sealed class QueryOperationResponse : QueryOperationResponse, IEnumerable
    {
        /// 
        /// constructor 
        /// 
        /// HTTP headers 
        /// original query 
        /// retrieved objects
        internal QueryOperationResponse(Dictionary headers, DataServiceRequest query, IEnumerable results) 
            : base(headers, query, results)
        {
        }
 
        /// Results from a query
        /// enumerator of objects in query 
        public new IEnumerator GetEnumerator() 
        {
            return ((IEnumerable)this.Results).GetEnumerator(); 
        }
    }
}

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