File: Items\BuildItemGroupProxy.cs
Web Access
Project: ..\..\..\src\Deprecated\Engine\Microsoft.Build.Engine.csproj (Microsoft.Build.Engine)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
// THE ASSEMBLY BUILT FROM THIS SOURCE FILE HAS BEEN DEPRECATED FOR YEARS. IT IS BUILT ONLY TO PROVIDE
// BACKWARD COMPATIBILITY FOR API USERS WHO HAVE NOT YET MOVED TO UPDATED APIS. PLEASE DO NOT SEND PULL
// REQUESTS THAT CHANGE THIS FILE WITHOUT FIRST CHECKING WITH THE MAINTAINERS THAT THE FIX IS REQUIRED.
 
using System.Collections;
 
namespace Microsoft.Build.BuildEngine
{
    /// <summary>
    /// An enumerable wrapper for a hashtable-by-name of BuildItemGroups that allows read-only
    /// access to the items.
    /// </summary>
    /// <remarks>
    /// This class is designed to be passed to loggers.
    /// The expense of copying items is only incurred if and when
    /// a logger chooses to enumerate over it.
    /// </remarks>
    /// <owner>danmose</owner>
    internal class BuildItemGroupProxy : IEnumerable
    {
        // Item group that this proxies
        private BuildItemGroup backingItemGroup;
 
        private BuildItemGroupProxy()
        {
            // Do nothing
        }
 
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="itemGroup">Item group this class should proxy</param>
        public BuildItemGroupProxy(BuildItemGroup itemGroup)
        {
            this.backingItemGroup = itemGroup;
        }
 
        /// <summary>
        /// Returns an enumerator that provides copies of the items
        /// in the backing item group.
        /// </summary>
        /// <returns></returns>
        public IEnumerator GetEnumerator()
        {
            foreach (BuildItem item in backingItemGroup)
            {
                yield return new DictionaryEntry(item.Name, new TaskItem(item));
            }
        }
    }
}