blob: 13a1b2448dc492a3a904bb40ebb7326cba094034 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//-----------------------------------------------------------------------
// <copyright file="IAuthorizationCarryingRequest.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OAuth2.ChannelElements {
using System.Security.Cryptography;
using Messaging;
/// <summary>
/// A message that carries some kind of token from the client to the authorization or resource server.
/// </summary>
internal interface IAuthorizationCarryingRequest : IDirectedProtocolMessage {
/// <summary>
/// Gets the authorization that the code or token describes.
/// </summary>
IAuthorizationDescription AuthorizationDescription { get; }
}
}
|