File: src\Servers\Kestrel\shared\test\DisposableStack.cs
Web Access
Project: src\src\Servers\Kestrel\test\InMemory.FunctionalTests\InMemory.FunctionalTests.csproj (InMemory.FunctionalTests)
// 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.Kestrel.Tests;
 
public class DisposableStack<T> : Stack<T>, IDisposable
    where T : IDisposable
{
    public void Dispose()
    {
        while (Count > 0)
        {
            Pop()?.Dispose();
        }
    }
}