Skip to content
This repository was archived by the owner on Jul 9, 2023. It is now read-only.

Commit 4f4e75e

Browse files
committed
comments
1 parent 3b37a98 commit 4f4e75e

File tree

8 files changed

+18
-3
lines changed

8 files changed

+18
-3
lines changed

Titanium.Web.Proxy/Http/ConnectRequest.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
namespace Titanium.Web.Proxy.Http
44
{
5+
/// <summary>
6+
/// The tcp tunnel Connect request.
7+
/// </summary>
58
public class ConnectRequest : Request
69
{
710
public ConnectRequest()

Titanium.Web.Proxy/Http/ConnectResponse.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
namespace Titanium.Web.Proxy.Http
66
{
7+
/// <summary>
8+
/// The tcp tunnel connect response object.
9+
/// </summary>
710
public class ConnectResponse : Response
811
{
912
public ServerHelloInfo ServerHelloInfo { get; set; }

Titanium.Web.Proxy/Http/HeaderCollection.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
namespace Titanium.Web.Proxy.Http
1010
{
11+
/// <summary>
12+
/// The http header collection.
13+
/// </summary>
1114
[TypeConverter(typeof(ExpandableObjectConverter))]
1215
public class HeaderCollection : IEnumerable<HttpHeader>
1316
{

Titanium.Web.Proxy/Http/KnownHeaders.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
namespace Titanium.Web.Proxy.Http
22
{
3+
/// <summary>
4+
/// Well known http headers.
5+
/// </summary>
36
public static class KnownHeaders
47
{
58
// Both

Titanium.Web.Proxy/Http/RequestResponseBase.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010

1111
namespace Titanium.Web.Proxy.Http
1212
{
13+
/// <summary>
14+
/// Abstract base class for similar objects shared by both request and response objects.
15+
/// </summary>
1316
public abstract class RequestResponseBase
1417
{
1518
/// <summary>

Titanium.Web.Proxy/Http/Responses/GenericResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace Titanium.Web.Proxy.Http.Responses
55
{
66
/// <summary>
7-
/// Anything other than a 200 or 302 response
7+
/// Anything other than a 200 or 302 http response.
88
/// </summary>
99
public class GenericResponse : Response
1010
{

Titanium.Web.Proxy/Http/Responses/OkResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Titanium.Web.Proxy.Http.Responses
44
{
55
/// <summary>
6-
/// 200 Ok response
6+
/// The http 200 Ok response.
77
/// </summary>
88
public sealed class OkResponse : Response
99
{

Titanium.Web.Proxy/Http/Responses/RedirectResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Titanium.Web.Proxy.Http.Responses
44
{
55
/// <summary>
6-
/// Redirect response
6+
/// The http redirect response.
77
/// </summary>
88
public sealed class RedirectResponse : Response
99
{

0 commit comments

Comments
 (0)