共用方式為


FormatterPolicy 列舉

定義

從 VisualizerObjectSource 串行化/還原串行化資訊時要使用的格式樣式。

public enum FormatterPolicy
type FormatterPolicy = 
Public Enum FormatterPolicy
繼承
FormatterPolicy

欄位

Json 1

使用 JSON 進行串行化/還原串行化。 這會在 .NET 6+ 上執行 .NET Framework 和 System.Text.Json 時使用 Newtonsoft.Json。

Legacy 0

指定如果運行時間支援,串行化協助程式方法應該使用 BinaryFormatter,否則會回復為 Json。 不過,這項功能現在已過時,而且僅適用於相容性原因。 如需為何不應使用此選項的詳細資訊,請參閱: https://learn.microsoft.com/en-us/dotnet/standard/serialization/binaryformatter-security-guide

NewtonsoftJson 2

使用 JSON 進行串行化/還原串行化。 這會在所有 .NET 平臺上使用Newtonsoft.Json。

適用於