Skip to content
This repository has been archived by the owner on Nov 20, 2018. It is now read-only.

Fix owin spec links #637

Merged
merged 1 commit into from
May 20, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 7 additions & 19 deletions src/Microsoft.AspNetCore.Owin/OwinConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ internal static class OwinConstants
{
#region OWIN v1.0.0 - 3.2.1. Request Data

// http://owin.org/spec/owin-1.0.0.html
// http://owin.org/spec/spec/owin-1.0.0.html

public const string RequestScheme = "owin.RequestScheme";
public const string RequestMethod = "owin.RequestMethod";
Expand All @@ -31,7 +31,7 @@ internal static class OwinConstants

#region OWIN v1.0.0 - 3.2.2. Response Data

// http://owin.org/spec/owin-1.0.0.html
// http://owin.org/spec/spec/owin-1.0.0.html

public const string ResponseStatusCode = "owin.ResponseStatusCode";
public const string ResponseReasonPhrase = "owin.ResponseReasonPhrase";
Expand All @@ -43,7 +43,7 @@ internal static class OwinConstants

#region OWIN v1.0.0 - 3.2.3. Other Data

// http://owin.org/spec/owin-1.0.0.html
// http://owin.org/spec/spec/owin-1.0.0.html

public const string CallCancelled = "owin.CallCancelled";

Expand All @@ -63,7 +63,7 @@ internal static class Builder

#region OWIN Key Guidelines and Common Keys - 6. Common keys

// http://owin.org/spec/CommonKeys.html
// http://owin.org/spec/spec/CommonKeys.html

internal static class CommonKeys
{
Expand All @@ -90,7 +90,7 @@ internal static class CommonKeys

#region SendFiles v0.3.0

// http://owin.org/extensions/owin-SendFile-Extension-v0.3.0.htm
// http://owin.org/spec/extensions/owin-SendFile-Extension-v0.3.0.htm

internal static class SendFiles
{
Expand All @@ -109,7 +109,7 @@ internal static class SendFiles

#region Opaque v0.3.0

// http://owin.org/extensions/owin-OpaqueStream-Extension-v0.3.0.htm
// http://owin.org/spec/extensions/owin-OpaqueStream-Extension-v0.3.0.htm

internal static class OpaqueConstants
{
Expand All @@ -132,7 +132,7 @@ internal static class OpaqueConstants

#region WebSocket v0.4.0

// http://owin.org/extensions/owin-OpaqueStream-Extension-v0.3.0.htm
// http://owin.org/spec/extensions/owin-OpaqueStream-Extension-v0.3.0.htm

internal static class WebSocket
{
Expand Down Expand Up @@ -165,23 +165,11 @@ internal static class WebSocket

#region Security v0.1.0

// http://owin.org/extensions/owin-Security-Extension-v0.1.0.htm

internal static class Security
{
// 3.2. Per Request

public const string User = "server.User";

public const string Authenticate = "security.Authenticate";

// 3.3. Response

public const string SignIn = "security.SignIn";

public const string SignOut = "security.SignOut";

public const string Challenge = "security.Challenge";
}

#endregion
Expand Down