File: DisposableList.cs
Web Access
Project: src\src\Servers\IIS\IIS\test\testassets\IIS.Common.TestLib\IIS.Common.TestLib.csproj (IIS.Common.TestLib)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using System.Collections.Generic;
 
namespace Microsoft.AspNetCore.Server.IntegrationTesting;
 
public class DisposableList<T> : List<T>, IDisposable where T : IDisposable
{
    public DisposableList() : base() { }
 
    public DisposableList(IEnumerable<T> collection) : base(collection) { }
 
    public DisposableList(int capacity) : base(capacity) { }
 
    public void Dispose()
    {
        foreach (var item in this)
        {
            item?.Dispose();
        }
    }
}