From 05a275faae0dd99b0545b8427e4d8bcefce30ab1 Mon Sep 17 00:00:00 2001 From: Chris Ross Date: Mon, 30 Jun 2014 11:06:32 -0700 Subject: [PATCH] OWIN: #87 Make IHttpAuthenticationFeature.Handler not throw. --- src/Microsoft.AspNet.Owin/OwinFeatureCollection.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/Microsoft.AspNet.Owin/OwinFeatureCollection.cs b/src/Microsoft.AspNet.Owin/OwinFeatureCollection.cs index c7af211b46..acd3b2f850 100644 --- a/src/Microsoft.AspNet.Owin/OwinFeatureCollection.cs +++ b/src/Microsoft.AspNet.Owin/OwinFeatureCollection.cs @@ -234,11 +234,7 @@ namespace Microsoft.AspNet.Owin set { Prop(OwinConstants.Security.User, value); } } - IAuthenticationHandler IHttpAuthenticationFeature.Handler - { - get { throw new NotImplementedException(); } - set { throw new NotImplementedException(); } - } + IAuthenticationHandler IHttpAuthenticationFeature.Handler { get; set; } public int Revision {