blob: 44af074bbb8d9c828f33843e41b7dff082c7312e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//-----------------------------------------------------------------------
// <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 result of calling the authorization server host's access token creation method.
/// </summary>
AccessTokenResult AccessTokenResult { get; set; }
}
}
|