FormatterAssemblyStyle 枚举

定义

注意

Formatter-based serialization is obsolete and should not be used.

指示将在反序列化期间用于定位和加载程序集的方法。

public enum class FormatterAssemblyStyle
public enum FormatterAssemblyStyle
[System.Obsolete("Formatter-based serialization is obsolete and should not be used.", DiagnosticId="SYSLIB0050", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public enum FormatterAssemblyStyle
[System.Serializable]
public enum FormatterAssemblyStyle
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum FormatterAssemblyStyle
type FormatterAssemblyStyle = 
[<System.Obsolete("Formatter-based serialization is obsolete and should not be used.", DiagnosticId="SYSLIB0050", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
type FormatterAssemblyStyle = 
[<System.Serializable>]
type FormatterAssemblyStyle = 
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type FormatterAssemblyStyle = 
Public Enum FormatterAssemblyStyle
继承
FormatterAssemblyStyle
属性

字段

Full 1

在完全模式下,反序列化期间所用的程序集必须与序列化期间所用的程序集完全匹配。 使用 Assembly 类的 Load 方法加载程序集。

Simple 0

在简单模式下,反序列化期间所用的程序集不需要与序列化期间所用的程序集完全匹配。 具体而言,当 LoadWithPartialName 方法用于加载程序集时,版本号不需要匹配。

适用于