25 lines
687 B
C#
25 lines
687 B
C#
using Microsoft.Owin;
|
|
using Microsoft.Owin.Security;
|
|
using Microsoft.Owin.Security.Provider;
|
|
|
|
namespace Owin.Security.Providers.Yammer.Provider
|
|
{
|
|
/// <summary>
|
|
/// Provides context information to middleware providers.
|
|
/// </summary>
|
|
public class YammerReturnEndpointContext : ReturnEndpointContext
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="context">OWIN environment</param>
|
|
/// <param name="ticket">The authentication ticket</param>
|
|
public YammerReturnEndpointContext(
|
|
IOwinContext context,
|
|
AuthenticationTicket ticket)
|
|
: base(context, ticket)
|
|
{
|
|
}
|
|
}
|
|
}
|