From 9e16b8919c5009ef8fa3e6cce0dccf2e1658d173 Mon Sep 17 00:00:00 2001 From: kvoyk Date: Thu, 30 Jul 2015 07:52:46 -0400 Subject: [PATCH] Update Startup.Auth.cs --- OwinOAuthProvidersDemo/App_Start/Startup.Auth.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/OwinOAuthProvidersDemo/App_Start/Startup.Auth.cs b/OwinOAuthProvidersDemo/App_Start/Startup.Auth.cs index 38f622f..ec73e86 100755 --- a/OwinOAuthProvidersDemo/App_Start/Startup.Auth.cs +++ b/OwinOAuthProvidersDemo/App_Start/Startup.Auth.cs @@ -272,6 +272,16 @@ namespace OwinOAuthProvidersDemo //app.UseBacklogAuthentication(options); + //var cosignOptions = new CosignAuthenticationOptions + //{ + // AuthenticationType = "Cosign", + // SignInAsAuthenticationType = signInAsType, + // CosignServer = "weblogin.umich.edu", + // CosignServicePort = 6663, + // IdentityServerHostInstance = "core1", + // ClientServer = "cosignservername" + //}; + //app.UseCosignAuthentication(cosignOptions); } } }