blob: e218462404ccea0e3c469b5d151c4fbd11986d96 (
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="IAccessTokenRequestInternal.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OAuth2.Messages {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/// <summary>
/// Implemented by all message types whose response may contain an access token.
/// </summary>
public interface IAccessTokenRequestInternal : IAccessTokenRequest {
/// <summary>
/// Gets or sets the access token creation parameters.
/// </summary>
/// <remarks>
/// This property's value is set by a binding element in the OAuth 2 channel.
/// </remarks>
AccessTokenParameters AccessTokenCreationParameters { get; set; }
}
}
|