[Modify] Rename it
This commit is contained in:
parent
f1c4083835
commit
de4f97013f
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user