Commit dd8d719e authored by Honfika's avatar Honfika

copy paste fix

parent 5f5ca4fc
...@@ -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
} }
......
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