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