Files
OwinOAuthProviders/Owin.Security.Providers/BattleNet/Provider/BattleNetReturnEndpointContext.cs
Kristoffer Pettersson 2fa48716cf - Added authentication against Battle.net
I have added functionality for authenticating against Battle.net OAuth
2014-11-12 20:30:19 +01:00

27 lines
731 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.BattleNet
{
/// <summary>
/// Provides context information to middleware providers.
/// </summary>
public class BattleNetReturnEndpointContext : ReturnEndpointContext
{
/// <summary>
///
/// </summary>
/// <param name="context">OWIN environment</param>
/// <param name="ticket">The authentication ticket</param>
public BattleNetReturnEndpointContext(
IOwinContext context,
AuthenticationTicket ticket)
: base(context, ticket)
{
}
}
}