aspnetcore/src/Microsoft.AspNet.Http/Features/HttpRequestLifetimeFeature.cs

17 lines
484 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Threading;
using Microsoft.AspNet.Http.Features;
namespace Microsoft.AspNet.Http.Features.Internal
{
public class HttpRequestLifetimeFeature : IHttpRequestLifetimeFeature
{
public CancellationToken RequestAborted { get; set; }
public void Abort()
{
}
}
}