Commit 4f4e75ee authored by justcoding121's avatar justcoding121

comments

parent 3b37a98b
......@@ -2,6 +2,9 @@
namespace Titanium.Web.Proxy.Http
{
/// <summary>
/// The tcp tunnel Connect request.
/// </summary>
public class ConnectRequest : Request
{
public ConnectRequest()
......
......@@ -4,6 +4,9 @@ using StreamExtended;
namespace Titanium.Web.Proxy.Http
{
/// <summary>
/// The tcp tunnel connect response object.
/// </summary>
public class ConnectResponse : Response
{
public ServerHelloInfo ServerHelloInfo { get; set; }
......
......@@ -8,6 +8,9 @@ using Titanium.Web.Proxy.Models;
namespace Titanium.Web.Proxy.Http
{
/// <summary>
/// The http header collection.
/// </summary>
[TypeConverter(typeof(ExpandableObjectConverter))]
public class HeaderCollection : IEnumerable<HttpHeader>
{
......
namespace Titanium.Web.Proxy.Http
{
/// <summary>
/// Well known http headers.
/// </summary>
public static class KnownHeaders
{
// Both
......
......@@ -10,6 +10,9 @@ using Titanium.Web.Proxy.Models;
namespace Titanium.Web.Proxy.Http
{
/// <summary>
/// Abstract base class for similar objects shared by both request and response objects.
/// </summary>
public abstract class RequestResponseBase
{
/// <summary>
......
......@@ -4,7 +4,7 @@ using System.Web;
namespace Titanium.Web.Proxy.Http.Responses
{
/// <summary>
/// Anything other than a 200 or 302 response
/// Anything other than a 200 or 302 http response.
/// </summary>
public class GenericResponse : Response
{
......
......@@ -3,7 +3,7 @@
namespace Titanium.Web.Proxy.Http.Responses
{
/// <summary>
/// 200 Ok response
/// The http 200 Ok response.
/// </summary>
public sealed class OkResponse : Response
{
......
......@@ -3,7 +3,7 @@
namespace Titanium.Web.Proxy.Http.Responses
{
/// <summary>
/// Redirect response
/// The http redirect response.
/// </summary>
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