blob: d1254afd84217fbfe941193fc5227eec7d1a3a5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//-----------------------------------------------------------------------
// <copyright file="TokenManager.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.ApplicationBlock {
using System;
using DotNetOpenAuth.OAuth2;
public class TokenManager : IClientAuthorizationTracker {
public IAuthorizationState GetAuthorizationState(Uri callbackUrl, string clientState) {
return new AuthorizationState {
Callback = callbackUrl,
};
}
}
}
|