From 06584a31b4b6d963fbe2130c915d75d3f9c4c152 Mon Sep 17 00:00:00 2001 From: Chris R Date: Wed, 29 Apr 2015 09:59:29 -0700 Subject: [PATCH] #276 Remove unused IHttpApplicationFeature. --- .../IHttpApplicationFeature.cs | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/Microsoft.AspNet.Http.Interfaces/IHttpApplicationFeature.cs diff --git a/src/Microsoft.AspNet.Http.Interfaces/IHttpApplicationFeature.cs b/src/Microsoft.AspNet.Http.Interfaces/IHttpApplicationFeature.cs deleted file mode 100644 index 3032d47b..00000000 --- a/src/Microsoft.AspNet.Http.Interfaces/IHttpApplicationFeature.cs +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System.Threading; - -namespace Microsoft.AspNet.Http -{ - public interface IHttpApplicationFeature - { - string AppName { get; set; } - string AppMode { get; set; } - CancellationToken OnAppDisposing { get; set; } - } -}