summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/ChannelElements/IOAuth2ChannelWithAuthorizationServer.cs
blob: ff6d7d1411cdcbc2c7e5853b19b6f296bdd02346 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//-----------------------------------------------------------------------
// <copyright file="IOAuth2ChannelWithAuthorizationServer.cs" company="Outercurve Foundation">
//     Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------

namespace DotNetOpenAuth.OAuth2.ChannelElements {
	/// <summary>
	/// An interface on an OAuth 2 Authorization Server channel
	/// to expose the host provided authorization server object.
	/// </summary>
	internal interface IOAuth2ChannelWithAuthorizationServer {
		/// <summary>
		/// Gets the authorization server.
		/// </summary>
		/// <value>The authorization server.</value>
		 IAuthorizationServerHost AuthorizationServer { get;  }
	}
}