[Modify] Replace it

This commit is contained in:
sta 2021-04-30 20:36:28 +09:00
parent 0d5d829ea7
commit f55f17de4e

View File

@ -243,7 +243,9 @@ namespace WebSocketSharp.Net
/// </exception> /// </exception>
public string CertificateFolderPath { public string CertificateFolderPath {
get { get {
CheckDisposed (); if (_disposed)
throw new ObjectDisposedException (_objectName);
return _certFolderPath; return _certFolderPath;
} }