1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
//-----------------------------------------------------------------------
// <copyright file="DirectErrorResponse.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId.Messages {
using System;
using System.Net;
using DotNetOpenAuth.Messaging;
/// <summary>
/// A message sent from a Provider to a Relying Party in response to a direct message request that resulted in an error.
/// </summary>
/// <remarks>
/// This message must be sent with an HTTP status code of 400.
/// This class satisfies OpenID 2.0 section 5.1.2.2.
/// </remarks>
internal class DirectErrorResponse : DirectResponseBase, IErrorMessage, IHttpDirectResponse {
/// <summary>
/// Initializes a new instance of the <see cref="DirectErrorResponse"/> class.
/// </summary>
/// <param name="responseVersion">The OpenID version of the response message.</param>
/// <param name="originatingRequest">The originating request.</param>
internal DirectErrorResponse(Version responseVersion, IDirectedProtocolMessage originatingRequest)
: base(responseVersion, originatingRequest) {
}
#region IHttpDirectResponse Members
/// <summary>
/// Gets the HTTP status code that the direct respones should be sent with.
/// </summary>
/// <value><see cref="HttpStatusCode.BadRequest"/></value>
HttpStatusCode IHttpDirectResponse.HttpStatusCode {
get { return HttpStatusCode.BadRequest; }
}
/// <summary>
/// Gets the HTTP headers to add to the response.
/// </summary>
/// <value>May be an empty collection, but must not be <c>null</c>.</value>
WebHeaderCollection IHttpDirectResponse.Headers {
get { return new WebHeaderCollection(); }
}
#endregion
/// <summary>
/// Gets or sets a human-readable message indicating why the request failed.
/// </summary>
[MessagePart("error", IsRequired = true, AllowEmpty = true)]
public string ErrorMessage { get; set; }
/// <summary>
/// Gets or sets the contact address for the administrator of the server.
/// </summary>
/// <value>The contact address may take any form, as it is intended to be displayed to a person. </value>
[MessagePart("contact", IsRequired = false, AllowEmpty = true)]
public string Contact { get; set; }
/// <summary>
/// Gets or sets a reference token, such as a support ticket number or a URL to a news blog, etc.
/// </summary>
[MessagePart("reference", IsRequired = false, AllowEmpty = true)]
public string Reference { get; set; }
}
}
|