// 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 { /// /// Provides context information to middleware providers. /// public class LinkedInReturnEndpointContext : ReturnEndpointContext { /// /// /// /// OWIN environment /// The authentication ticket public LinkedInReturnEndpointContext( IOwinContext context, AuthenticationTicket ticket) : base(context, ticket) { } } }