blob: 8a7c2e1f70f73ef08f59592afd8393d15ddd8c82 (
plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
//-----------------------------------------------------------------------
// <copyright file="Response.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOAuth.Messaging {
using System;
using System.IO;
using System.Net;
using System.Web;
/// <summary>
/// A protocol message (request or response) that passes between Consumer and Service Provider
/// via the user agent using a redirect or form POST submission,
/// OR a direct message response.
/// </summary>
/// <remarks>
/// <para>An instance of this type describes the HTTP response that must be sent
/// in response to the current HTTP request.</para>
/// <para>It is important that this response make up the entire HTTP response.
/// A hosting ASPX page should not be allowed to render its normal HTML output
/// after this response is sent. The normal rendered output of an ASPX page
/// can be canceled by calling <see cref="HttpResponse.End"/> after this message
/// is sent on the response stream.</para>
/// </remarks>
public class Response {
/// <summary>
/// Initializes a new instance of the <see cref="Response"/> class.
/// </summary>
internal Response() {
this.Status = HttpStatusCode.OK;
this.Headers = new WebHeaderCollection();
}
/// <summary>
/// Initializes a new instance of the <see cref="Response"/> class
/// based on the contents of an <see cref="HttpWebResponse"/>.
/// </summary>
/// <param name="response">The <see cref="HttpWebResponse"/> to clone.</param>
internal Response(HttpWebResponse response) {
this.Status = response.StatusCode;
this.Headers = response.Headers;
using (StreamReader reader = new StreamReader(response.GetResponseStream())) {
this.Body = reader.ReadToEnd();
}
}
/// <summary>
/// Gets the headers that must be included in the response to the user agent.
/// </summary>
/// <remarks>
/// The headers in this collection are not meant to be a comprehensive list
/// of exactly what should be sent, but are meant to augment whatever headers
/// are generally included in a typical response.
/// </remarks>
public WebHeaderCollection Headers { get; internal set; }
/// <summary>
/// Gets the body of the HTTP response.
/// </summary>
public string Body { get; internal set; }
/// <summary>
/// Gets the HTTP status code to use in the HTTP response.
/// </summary>
public HttpStatusCode Status { get; internal set; }
/// <summary>
/// Gets or sets a reference to the actual protocol message that
/// is being sent via the user agent.
/// </summary>
internal IProtocolMessage OriginalMessage { get; set; }
/// <summary>
/// Automatically sends the appropriate response to the user agent.
/// Requires a current HttpContext.
/// </summary>
public void Send() {
if (HttpContext.Current == null) {
throw new InvalidOperationException(Strings.CurrentHttpContextRequired);
}
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.StatusCode = (int)this.Status;
MessagingUtilities.ApplyHeadersToResponse(this.Headers, HttpContext.Current.Response);
if (this.Body != null) {
HttpContext.Current.Response.Output.Write(this.Body);
}
HttpContext.Current.Response.End();
}
}
}
|