//----------------------------------------------------------------------- // // Copyright (c) Outercurve Foundation. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.OAuth2.ChannelElements { /// /// A message that carries an access token between client and authorization server. /// internal interface IAccessTokenCarryingRequest : IAuthorizationCarryingRequest { /// /// Gets or sets the access token. /// string AccessToken { get; set; } /// /// Gets or sets the authorization that the token describes. /// new AccessToken AuthorizationDescription { get; set; } } }