diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-02 08:59:34 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-02 08:59:34 -0800 |
commit | 1a1a37ebb26034d2f5470c3be2da18cefe5293da (patch) | |
tree | aeb0e2e6a5d7588a449a80881e477bc9b681ce7b /src/DotNetOpenAuth.AspNet/Clients/OAuth/IOAuthTokenManager.cs | |
parent | ffecd2bd3cd8e0f21d4156770afe5d84626ca6bc (diff) | |
download | DotNetOpenAuth-1a1a37ebb26034d2f5470c3be2da18cefe5293da.zip DotNetOpenAuth-1a1a37ebb26034d2f5470c3be2da18cefe5293da.tar.gz DotNetOpenAuth-1a1a37ebb26034d2f5470c3be2da18cefe5293da.tar.bz2 |
Fixes build breaks in DNOA.AspNet
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/Clients/OAuth/IOAuthTokenManager.cs')
-rw-r--r-- | src/DotNetOpenAuth.AspNet/Clients/OAuth/IOAuthTokenManager.cs | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth/IOAuthTokenManager.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth/IOAuthTokenManager.cs deleted file mode 100644 index 92f1c22..0000000 --- a/src/DotNetOpenAuth.AspNet/Clients/OAuth/IOAuthTokenManager.cs +++ /dev/null @@ -1,38 +0,0 @@ -//----------------------------------------------------------------------- -// <copyright file="IOAuthTokenManager.cs" company="Microsoft"> -// Copyright (c) Microsoft. All rights reserved. -// </copyright> -//----------------------------------------------------------------------- - -namespace DotNetOpenAuth.AspNet.Clients { - /// <summary> - /// A token manager for use by a web site in its role as a consumer of - /// an individual ServiceProvider. - /// </summary> - /// <remarks> - /// This interface is used by clients of the DotNetOpenAuth.AspNet classes. - /// </remarks> - public interface IOAuthTokenManager { - /// <summary> - /// Gets the token secret from the specified token. - /// </summary> - /// <param name="token">The token.</param> - /// <returns>The token's secret</returns> - string GetTokenSecret(string token); - - /// <summary> - /// Stores the request token together with its secret. - /// </summary> - /// <param name="requestToken">The request token.</param> - /// <param name="requestTokenSecret">The request token secret.</param> - void StoreRequestToken(string requestToken, string requestTokenSecret); - - /// <summary> - /// Replaces the request token with access token. - /// </summary> - /// <param name="requestToken">The request token.</param> - /// <param name="accessToken">The access token.</param> - /// <param name="accessTokenSecret">The access token secret.</param> - void ReplaceRequestTokenWithAccessToken(string requestToken, string accessToken, string accessTokenSecret); - } -}
\ No newline at end of file |