//----------------------------------------------------------------------- // // 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 result of calling the authorization server host's access token creation method. /// IAccessTokenResult AccessTokenResult { get; set; } } }