Add missing using.

This commit is contained in:
Chris Ross 2014-07-01 15:13:48 -07:00
parent 872f18b63b
commit 1a579aba01
2 changed files with 1 additions and 1 deletions

View File

@ -422,7 +422,6 @@ namespace Microsoft.AspNet.Server.WebListener
set { _user = value; }
}
// TODO: Hook this server up as the default handler, have it issue challenges for configured auth types by name.
IAuthenticationHandler IHttpAuthenticationFeature.Handler
{
get { return _authHandler; }

View File

@ -32,6 +32,7 @@ using System.Security.Cryptography.X509Certificates;
#if NET45
using System.Security.Principal;
#endif
using System.Threading;
using System.Threading.Tasks;
namespace Microsoft.Net.Server