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
dba00219
Commit
dba00219
authored
Oct 27, 2016
by
Nordin Rahman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename ProxyHttpException.SessionInfo to SessionEventArgs
parent
92e251f6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
ProxyException.cs
Titanium.Web.Proxy/Exceptions/ProxyException.cs
+5
-0
ProxyHttpException.cs
Titanium.Web.Proxy/Exceptions/ProxyHttpException.cs
+4
-4
No files found.
Titanium.Web.Proxy/Exceptions/ProxyException.cs
View file @
dba00219
...
...
@@ -7,6 +7,11 @@ namespace Titanium.Web.Proxy.Exceptions
/// </summary>
public
abstract
class
ProxyException
:
Exception
{
/// <summary>
/// Instantiate this exception - must be invoked by derived classes' constructors
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
protected
ProxyException
(
string
message
,
Exception
innerException
)
:
base
(
message
,
innerException
)
{
}
...
...
Titanium.Web.Proxy/Exceptions/ProxyHttpException.cs
View file @
dba00219
...
...
@@ -13,10 +13,10 @@ namespace Titanium.Web.Proxy.Exceptions
/// </summary>
/// <param name="message">Message for this exception</param>
/// <param name="innerException">Associated inner exception</param>
/// <param name="session
Info">Instance of <see cref="
SessionEventArgs"/> associated to the exception</param>
public
ProxyHttpException
(
string
message
,
Exception
innerException
,
SessionEventArgs
session
Info
)
:
base
(
message
,
innerException
)
/// <param name="session
EventArgs">Instance of <see cref="EventArguments.
SessionEventArgs"/> associated to the exception</param>
public
ProxyHttpException
(
string
message
,
Exception
innerException
,
SessionEventArgs
session
EventArgs
)
:
base
(
message
,
innerException
)
{
Session
Info
=
sessionInfo
;
Session
EventArgs
=
sessionEventArgs
;
}
/// <summary>
...
...
@@ -25,6 +25,6 @@ namespace Titanium.Web.Proxy.Exceptions
/// <remarks>
/// This object should not be edited
/// </remarks>
public
SessionEventArgs
Session
Info
{
get
;
}
public
SessionEventArgs
Session
EventArgs
{
get
;
}
}
}
\ No newline at end of file
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