blob: 5fc73ce14b9a5095c3880f1873d996f63064e31f (
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>
IAuthorizationServer AuthorizationServer { get; }
}
}
|