Add missing using.
This commit is contained in:
parent
872f18b63b
commit
1a579aba01
|
|
@ -422,7 +422,6 @@ namespace Microsoft.AspNet.Server.WebListener
|
||||||
set { _user = value; }
|
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
|
IAuthenticationHandler IHttpAuthenticationFeature.Handler
|
||||||
{
|
{
|
||||||
get { return _authHandler; }
|
get { return _authHandler; }
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,7 @@ using System.Security.Cryptography.X509Certificates;
|
||||||
#if NET45
|
#if NET45
|
||||||
using System.Security.Principal;
|
using System.Security.Principal;
|
||||||
#endif
|
#endif
|
||||||
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Microsoft.Net.Server
|
namespace Microsoft.Net.Server
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue