[Fix] Fix for issue #544

Inherit the ISerializable interface again because some build environments get an error.
This commit is contained in:
sta 2019-11-14 16:01:36 +09:00
parent 0be5376ff6
commit af263c0b81

View File

@ -46,7 +46,7 @@ namespace WebSocketSharp.Net
/// The exception that is thrown when a <see cref="Cookie"/> gets an error. /// The exception that is thrown when a <see cref="Cookie"/> gets an error.
/// </summary> /// </summary>
[Serializable] [Serializable]
public class CookieException : FormatException public class CookieException : FormatException, ISerializable
{ {
#region Internal Constructors #region Internal Constructors