Files
OwinOAuthProviders/Owin.Security.Providers/EVEOnline/Provider/EVEOnlineReturnEndpointContext.cs
ByteBlast c58437be3a Renamed EVE to Eve
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.)
2015-03-13 18:01:08 +00:00

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)
{
}
}
}