blob: 74ec3be3031ff2d5507ca542cef7144154a4e15f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//-----------------------------------------------------------------------
// <copyright file="IConsumerTokenManager.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OAuth.ChannelElements {
/// <summary>
/// A token manager for use by a web site in its role as a consumer of
/// an individual ServiceProvider.
/// </summary>
public interface IConsumerTokenManager : ITokenManager {
/// <summary>
/// Gets the consumer key.
/// </summary>
/// <value>The consumer key.</value>
string ConsumerKey { get; }
/// <summary>
/// Gets the consumer secret.
/// </summary>
/// <value>The consumer secret.</value>
string ConsumerSecret { get; }
}
}
|