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