blob: 3ba2a61fc19e28e8529fb99df7fb9349ac6d148d (
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="UserNamePasswordFailedResponse.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OAuth2.Messages {
/// <summary>
/// A response from the Authorization Server to the Consumer to indicate that a
/// request for a delegation code failed, probably due to an invalid
/// username and password.
/// </summary>
internal class UserNamePasswordFailedResponse : UnauthorizedResponse {
/// <summary>
/// Initializes a new instance of the <see cref="UserNamePasswordFailedResponse"/> class.
/// </summary>
/// <param name="request">The request.</param>
internal UserNamePasswordFailedResponse(UserNamePasswordRequest request)
: base(request) {
}
}
}
|