Commit cd56ca21 authored by justcoding121's avatar justcoding121

comments

parent 81feeb2b
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
namespace Titanium.Web.Proxy.Http namespace Titanium.Web.Proxy.Http
{ {
/// <summary>
/// The tcp tunnel Connect request.
/// </summary>
public class ConnectRequest : Request public class ConnectRequest : Request
{ {
public ConnectRequest() public ConnectRequest()
......
...@@ -4,6 +4,9 @@ using StreamExtended; ...@@ -4,6 +4,9 @@ using StreamExtended;
namespace Titanium.Web.Proxy.Http namespace Titanium.Web.Proxy.Http
{ {
/// <summary>
/// The tcp tunnel connect response object.
/// </summary>
public class ConnectResponse : Response public class ConnectResponse : Response
{ {
public ServerHelloInfo ServerHelloInfo { get; set; } public ServerHelloInfo ServerHelloInfo { get; set; }
......
...@@ -8,6 +8,9 @@ using Titanium.Web.Proxy.Models; ...@@ -8,6 +8,9 @@ using Titanium.Web.Proxy.Models;
namespace Titanium.Web.Proxy.Http namespace Titanium.Web.Proxy.Http
{ {
/// <summary>
/// The http header collection.
/// </summary>
[TypeConverter(typeof(ExpandableObjectConverter))] [TypeConverter(typeof(ExpandableObjectConverter))]
public class HeaderCollection : IEnumerable<HttpHeader> public class HeaderCollection : IEnumerable<HttpHeader>
{ {
......
namespace Titanium.Web.Proxy.Http namespace Titanium.Web.Proxy.Http
{ {
/// <summary>
/// Well known http headers.
/// </summary>
public static class KnownHeaders public static class KnownHeaders
{ {
// Both // Both
......
...@@ -10,6 +10,9 @@ using Titanium.Web.Proxy.Models; ...@@ -10,6 +10,9 @@ using Titanium.Web.Proxy.Models;
namespace Titanium.Web.Proxy.Http namespace Titanium.Web.Proxy.Http
{ {
/// <summary>
/// Abstract base class for similar objects shared by both request and response objects.
/// </summary>
public abstract class RequestResponseBase public abstract class RequestResponseBase
{ {
/// <summary> /// <summary>
......
...@@ -4,7 +4,7 @@ using System.Web; ...@@ -4,7 +4,7 @@ using System.Web;
namespace Titanium.Web.Proxy.Http.Responses namespace Titanium.Web.Proxy.Http.Responses
{ {
/// <summary> /// <summary>
/// Anything other than a 200 or 302 response /// Anything other than a 200 or 302 http response.
/// </summary> /// </summary>
public class GenericResponse : Response public class GenericResponse : Response
{ {
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
namespace Titanium.Web.Proxy.Http.Responses namespace Titanium.Web.Proxy.Http.Responses
{ {
/// <summary> /// <summary>
/// 200 Ok response /// The http 200 Ok response.
/// </summary> /// </summary>
public sealed class OkResponse : Response public sealed class OkResponse : Response
{ {
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
namespace Titanium.Web.Proxy.Http.Responses namespace Titanium.Web.Proxy.Http.Responses
{ {
/// <summary> /// <summary>
/// Redirect response /// The http redirect response.
/// </summary> /// </summary>
public sealed class RedirectResponse : Response public sealed class RedirectResponse : Response
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment