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