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
dd8d719e
Commit
dd8d719e
authored
Jun 25, 2017
by
Honfika
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
copy paste fix
parent
5f5ca4fc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
DotNetStandardExtensions.cs
Titanium.Web.Proxy/Extensions/DotNetStandardExtensions.cs
+4
-4
No files found.
Titanium.Web.Proxy/Extensions/DotNetStandardExtensions.cs
View file @
dd8d719e
...
@@ -25,15 +25,15 @@ namespace Titanium.Web.Proxy.Extensions
...
@@ -25,15 +25,15 @@ namespace Titanium.Web.Proxy.Extensions
/// <summary>
/// <summary>
/// Disposes the specified
client
.
/// Disposes the specified
store
.
/// Int .NET framework 4.5 the X509Store class has no Dispose method,
/// Int .NET framework 4.5 the X509Store class has no Dispose method,
/// it is available from .NET 4.6, see
/// it is available from .NET 4.6, see
/// https://msdn.microsoft.com/en-us/library/system.security.cryptography.x509certificates.x509store.dispose(v=vs.110).aspx
/// https://msdn.microsoft.com/en-us/library/system.security.cryptography.x509certificates.x509store.dispose(v=vs.110).aspx
/// </summary>
/// </summary>
/// <param name="
client">The client
.</param>
/// <param name="
store">The store
.</param>
internal
static
void
Dispose
(
this
X509Store
client
)
internal
static
void
Dispose
(
this
X509Store
store
)
{
{
client
.
Close
();
store
.
Close
();
}
}
#endif
#endif
}
}
...
...
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