[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>
public string CertificateFolderPath {
get {
CheckDisposed ();
if (_disposed)
throw new ObjectDisposedException (_objectName);
return _certFolderPath;
}