[Modify] Rename it

This commit is contained in:
sta 2017-05-10 16:34:32 +09:00
parent f1c4083835
commit de4f97013f

View File

@ -47,7 +47,7 @@ namespace WebSocketSharp.Net
{
#region Private Fields
private X509CertificateCollection _certs;
private X509CertificateCollection _clientCerts;
private string _host;
#endregion
@ -98,7 +98,7 @@ namespace WebSocketSharp.Net
: base (enabledSslProtocols, checkCertificateRevocation)
{
_host = targetHost;
_certs = clientCertificates;
_clientCerts = clientCertificates;
}
#endregion
@ -113,11 +113,11 @@ namespace WebSocketSharp.Net
/// </value>
public X509CertificateCollection ClientCertificates {
get {
return _certs;
return _clientCerts;
}
set {
_certs = value;
_clientCerts = value;
}
}