无法存储 quartz .net 作业

Unable to store quartz .net job

 +$exception    {Quartz.JobPersistenceException: Couldn't store job: Type  
'System.Collections.Specialized.NameValueCollection' in Assembly 
'System.Collections.Specialized, Version=4.1.0.0, Culture=neutral, 
PublicKeyToken=b03f5f7f11d50a3a' is not marked as serializable. ---> 
System.Runtime.Serialization.SerializationException: Type 
'System.Collections.Specialized.NameValueCollection' in Assembly 
'System.Collections.Specialized, Version=4.1.0.0, Culture=neutral, 
PublicKeyToken=b03f5f7f11d50a3a' is not marked as serializable.

这是由于 .NET Core 不兼容序列化造成的,请切换到使用 JSON 序列化,如本 issue. - @lahma 中所述。 希望这对其他人有帮助。