According to Wikipedia (http://en.wikipedia.org/wiki/Eve_Online), the game is called "Eve Online". "EVE Online" is a style. Convention usually dictates that identifiers do not contain three consecutive uppercase letters anyway. (Think about SqlClient, HttpClient, and others.)
27 lines
824 B
C#
27 lines
824 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
using Microsoft.Owin;
|
|
using Microsoft.Owin.Security;
|
|
using Microsoft.Owin.Security.Provider;
|
|
|
|
namespace Owin.Security.Providers.EveOnline
|
|
{
|
|
/// <summary>
|
|
/// Provides context information to middleware providers.
|
|
/// </summary>
|
|
public class EveOnlineReturnEndpointContext : ReturnEndpointContext
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="context">OWIN environment</param>
|
|
/// <param name="ticket">The authentication ticket</param>
|
|
public EveOnlineReturnEndpointContext(
|
|
IOwinContext context,
|
|
AuthenticationTicket ticket)
|
|
: base(context, ticket)
|
|
{
|
|
}
|
|
}
|
|
}
|