Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IAsyncManagerContainer.cs « Async « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 432d346d64ebbceb07fce97b406c3626df5aeea0 (plain)
1
2
3
4
5
6
7
8
9
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.

namespace System.Web.Mvc.Async
{
    public interface IAsyncManagerContainer
    {
        AsyncManager AsyncManager { get; }
    }
}