Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
Titanium-Web-Proxy
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Titanium-Web-Proxy
Commits
fbf347b6
Commit
fbf347b6
authored
Aug 09, 2018
by
justcoding121
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://github.com/justcoding121/Titanium-Web-Proxy
parents
575d14ac
35c67e83
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
54 additions
and
29 deletions
+54
-29
ConnectRequest.cs
Titanium.Web.Proxy/Http/ConnectRequest.cs
+3
-0
ConnectResponse.cs
Titanium.Web.Proxy/Http/ConnectResponse.cs
+3
-0
HeaderCollection.cs
Titanium.Web.Proxy/Http/HeaderCollection.cs
+3
-0
KnownHeaders.cs
Titanium.Web.Proxy/Http/KnownHeaders.cs
+3
-0
RequestResponseBase.cs
Titanium.Web.Proxy/Http/RequestResponseBase.cs
+3
-0
GenericResponse.cs
Titanium.Web.Proxy/Http/Responses/GenericResponse.cs
+1
-1
OkResponse.cs
Titanium.Web.Proxy/Http/Responses/OkResponse.cs
+1
-1
RedirectResponse.cs
Titanium.Web.Proxy/Http/Responses/RedirectResponse.cs
+1
-1
Titanium.Web.Proxy.Http.ConnectRequest.html
docs/api/Titanium.Web.Proxy.Http.ConnectRequest.html
+2
-1
Titanium.Web.Proxy.Http.ConnectResponse.html
docs/api/Titanium.Web.Proxy.Http.ConnectResponse.html
+2
-1
Titanium.Web.Proxy.Http.HeaderCollection.html
docs/api/Titanium.Web.Proxy.Http.HeaderCollection.html
+2
-1
Titanium.Web.Proxy.Http.KnownHeaders.html
docs/api/Titanium.Web.Proxy.Http.KnownHeaders.html
+2
-1
Titanium.Web.Proxy.Http.RequestResponseBase.html
docs/api/Titanium.Web.Proxy.Http.RequestResponseBase.html
+2
-1
Titanium.Web.Proxy.Http.Responses.GenericResponse.html
...pi/Titanium.Web.Proxy.Http.Responses.GenericResponse.html
+1
-1
Titanium.Web.Proxy.Http.Responses.OkResponse.html
docs/api/Titanium.Web.Proxy.Http.Responses.OkResponse.html
+1
-1
Titanium.Web.Proxy.Http.Responses.RedirectResponse.html
...i/Titanium.Web.Proxy.Http.Responses.RedirectResponse.html
+1
-1
Titanium.Web.Proxy.Http.Responses.html
docs/api/Titanium.Web.Proxy.Http.Responses.html
+3
-3
Titanium.Web.Proxy.Http.html
docs/api/Titanium.Web.Proxy.Http.html
+10
-5
index.json
docs/index.json
+10
-10
No files found.
Titanium.Web.Proxy/Http/ConnectRequest.cs
View file @
fbf347b6
...
...
@@ -2,6 +2,9 @@
namespace
Titanium.Web.Proxy.Http
{
/// <summary>
/// The tcp tunnel Connect request.
/// </summary>
public
class
ConnectRequest
:
Request
{
public
ConnectRequest
()
...
...
Titanium.Web.Proxy/Http/ConnectResponse.cs
View file @
fbf347b6
...
...
@@ -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
;
}
...
...
Titanium.Web.Proxy/Http/HeaderCollection.cs
View file @
fbf347b6
...
...
@@ -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
>
{
...
...
Titanium.Web.Proxy/Http/KnownHeaders.cs
View file @
fbf347b6
namespace
Titanium.Web.Proxy.Http
{
/// <summary>
/// Well known http headers.
/// </summary>
public
static
class
KnownHeaders
{
// Both
...
...
Titanium.Web.Proxy/Http/RequestResponseBase.cs
View file @
fbf347b6
...
...
@@ -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>
...
...
Titanium.Web.Proxy/Http/Responses/GenericResponse.cs
View file @
fbf347b6
...
...
@@ -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
{
...
...
Titanium.Web.Proxy/Http/Responses/OkResponse.cs
View file @
fbf347b6
...
...
@@ -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
{
...
...
Titanium.Web.Proxy/Http/Responses/RedirectResponse.cs
View file @
fbf347b6
...
...
@@ -3,7 +3,7 @@
namespace
Titanium.Web.Proxy.Http.Responses
{
/// <summary>
///
Redirect response
///
The http redirect response.
/// </summary>
public
sealed
class
RedirectResponse
:
Response
{
...
...
docs/api/Titanium.Web.Proxy.Http.ConnectRequest.html
View file @
fbf347b6
...
...
@@ -83,7 +83,8 @@
<h1
id=
"Titanium_Web_Proxy_Http_ConnectRequest"
data-uid=
"Titanium.Web.Proxy.Http.ConnectRequest"
class=
"text-break"
>
Class ConnectRequest
</h1>
<div
class=
"markdown level0 summary"
></div>
<div
class=
"markdown level0 summary"
><p>
The tcp tunnel Connect request.
</p>
</div>
<div
class=
"markdown level0 conceptual"
></div>
<div
class=
"inheritance"
>
<h5>
Inheritance
</h5>
...
...
docs/api/Titanium.Web.Proxy.Http.ConnectResponse.html
View file @
fbf347b6
...
...
@@ -83,7 +83,8 @@
<h1
id=
"Titanium_Web_Proxy_Http_ConnectResponse"
data-uid=
"Titanium.Web.Proxy.Http.ConnectResponse"
class=
"text-break"
>
Class ConnectResponse
</h1>
<div
class=
"markdown level0 summary"
></div>
<div
class=
"markdown level0 summary"
><p>
The tcp tunnel connect response object.
</p>
</div>
<div
class=
"markdown level0 conceptual"
></div>
<div
class=
"inheritance"
>
<h5>
Inheritance
</h5>
...
...
docs/api/Titanium.Web.Proxy.Http.HeaderCollection.html
View file @
fbf347b6
...
...
@@ -83,7 +83,8 @@
<h1
id=
"Titanium_Web_Proxy_Http_HeaderCollection"
data-uid=
"Titanium.Web.Proxy.Http.HeaderCollection"
class=
"text-break"
>
Class HeaderCollection
</h1>
<div
class=
"markdown level0 summary"
></div>
<div
class=
"markdown level0 summary"
><p>
The http header collection.
</p>
</div>
<div
class=
"markdown level0 conceptual"
></div>
<div
class=
"inheritance"
>
<h5>
Inheritance
</h5>
...
...
docs/api/Titanium.Web.Proxy.Http.KnownHeaders.html
View file @
fbf347b6
...
...
@@ -83,7 +83,8 @@
<h1
id=
"Titanium_Web_Proxy_Http_KnownHeaders"
data-uid=
"Titanium.Web.Proxy.Http.KnownHeaders"
class=
"text-break"
>
Class KnownHeaders
</h1>
<div
class=
"markdown level0 summary"
></div>
<div
class=
"markdown level0 summary"
><p>
Well known http headers.
</p>
</div>
<div
class=
"markdown level0 conceptual"
></div>
<div
class=
"inheritance"
>
<h5>
Inheritance
</h5>
...
...
docs/api/Titanium.Web.Proxy.Http.RequestResponseBase.html
View file @
fbf347b6
...
...
@@ -83,7 +83,8 @@
<h1
id=
"Titanium_Web_Proxy_Http_RequestResponseBase"
data-uid=
"Titanium.Web.Proxy.Http.RequestResponseBase"
class=
"text-break"
>
Class RequestResponseBase
</h1>
<div
class=
"markdown level0 summary"
></div>
<div
class=
"markdown level0 summary"
><p>
Abstract base class for similar objects shared by both request and response objects.
</p>
</div>
<div
class=
"markdown level0 conceptual"
></div>
<div
class=
"inheritance"
>
<h5>
Inheritance
</h5>
...
...
docs/api/Titanium.Web.Proxy.Http.Responses.GenericResponse.html
View file @
fbf347b6
...
...
@@ -83,7 +83,7 @@
<h1
id=
"Titanium_Web_Proxy_Http_Responses_GenericResponse"
data-uid=
"Titanium.Web.Proxy.Http.Responses.GenericResponse"
class=
"text-break"
>
Class GenericResponse
</h1>
<div
class=
"markdown level0 summary"
><p>
Anything other than a 200 or 302
response
</p>
<div
class=
"markdown level0 summary"
><p>
Anything other than a 200 or 302
http response.
</p>
</div>
<div
class=
"markdown level0 conceptual"
></div>
<div
class=
"inheritance"
>
...
...
docs/api/Titanium.Web.Proxy.Http.Responses.OkResponse.html
View file @
fbf347b6
...
...
@@ -83,7 +83,7 @@
<h1
id=
"Titanium_Web_Proxy_Http_Responses_OkResponse"
data-uid=
"Titanium.Web.Proxy.Http.Responses.OkResponse"
class=
"text-break"
>
Class OkResponse
</h1>
<div
class=
"markdown level0 summary"
><p>
200 Ok response
</p>
<div
class=
"markdown level0 summary"
><p>
The http 200 Ok response.
</p>
</div>
<div
class=
"markdown level0 conceptual"
></div>
<div
class=
"inheritance"
>
...
...
docs/api/Titanium.Web.Proxy.Http.Responses.RedirectResponse.html
View file @
fbf347b6
...
...
@@ -83,7 +83,7 @@
<h1
id=
"Titanium_Web_Proxy_Http_Responses_RedirectResponse"
data-uid=
"Titanium.Web.Proxy.Http.Responses.RedirectResponse"
class=
"text-break"
>
Class RedirectResponse
</h1>
<div
class=
"markdown level0 summary"
><p>
Redirect response
</p>
<div
class=
"markdown level0 summary"
><p>
The http redirect response.
</p>
</div>
<div
class=
"markdown level0 conceptual"
></div>
<div
class=
"inheritance"
>
...
...
docs/api/Titanium.Web.Proxy.Http.Responses.html
View file @
fbf347b6
...
...
@@ -88,13 +88,13 @@
<h3
id=
"classes"
>
Classes
</h3>
<h4><a
class=
"xref"
href=
"Titanium.Web.Proxy.Http.Responses.GenericResponse.html"
>
GenericResponse
</a></h4>
<section><p>
Anything other than a 200 or 302
response
</p>
<section><p>
Anything other than a 200 or 302
http response.
</p>
</section>
<h4><a
class=
"xref"
href=
"Titanium.Web.Proxy.Http.Responses.OkResponse.html"
>
OkResponse
</a></h4>
<section><p>
200 Ok response
</p>
<section><p>
The http 200 Ok response.
</p>
</section>
<h4><a
class=
"xref"
href=
"Titanium.Web.Proxy.Http.Responses.RedirectResponse.html"
>
RedirectResponse
</a></h4>
<section><p>
Redirect response
</p>
<section><p>
The http redirect response.
</p>
</section>
</article>
</div>
...
...
docs/api/Titanium.Web.Proxy.Http.html
View file @
fbf347b6
...
...
@@ -88,21 +88,26 @@
<h3
id=
"classes"
>
Classes
</h3>
<h4><a
class=
"xref"
href=
"Titanium.Web.Proxy.Http.ConnectRequest.html"
>
ConnectRequest
</a></h4>
<section></section>
<section><p>
The tcp tunnel Connect request.
</p>
</section>
<h4><a
class=
"xref"
href=
"Titanium.Web.Proxy.Http.ConnectResponse.html"
>
ConnectResponse
</a></h4>
<section></section>
<section><p>
The tcp tunnel connect response object.
</p>
</section>
<h4><a
class=
"xref"
href=
"Titanium.Web.Proxy.Http.HeaderCollection.html"
>
HeaderCollection
</a></h4>
<section></section>
<section><p>
The http header collection.
</p>
</section>
<h4><a
class=
"xref"
href=
"Titanium.Web.Proxy.Http.HttpWebClient.html"
>
HttpWebClient
</a></h4>
<section><p>
Used to communicate with the server over HTTP(S)
</p>
</section>
<h4><a
class=
"xref"
href=
"Titanium.Web.Proxy.Http.KnownHeaders.html"
>
KnownHeaders
</a></h4>
<section></section>
<section><p>
Well known http headers.
</p>
</section>
<h4><a
class=
"xref"
href=
"Titanium.Web.Proxy.Http.Request.html"
>
Request
</a></h4>
<section><p>
Http(s) request object
</p>
</section>
<h4><a
class=
"xref"
href=
"Titanium.Web.Proxy.Http.RequestResponseBase.html"
>
RequestResponseBase
</a></h4>
<section></section>
<section><p>
Abstract base class for similar objects shared by both request and response objects.
</p>
</section>
<h4><a
class=
"xref"
href=
"Titanium.Web.Proxy.Http.Response.html"
>
Response
</a></h4>
<section><p>
Http(s) response object
</p>
</section>
...
...
docs/index.json
View file @
fbf347b6
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment