FormatterAssemblyStyle Enumeração

Definição

Indica o método que será usado durante a desserialização para localizar e carregar assemblies.Indicates the method that will be used during deserialization for locating and loading assemblies.

public enum class FormatterAssemblyStyle
public enum FormatterAssemblyStyle
[System.Serializable]
public enum FormatterAssemblyStyle
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum FormatterAssemblyStyle
type FormatterAssemblyStyle = 
[<System.Serializable>]
type FormatterAssemblyStyle = 
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type FormatterAssemblyStyle = 
Public Enum FormatterAssemblyStyle
Herança
FormatterAssemblyStyle
Atributos

Campos

Full 1

No modo completo, o assembly usado durante a desserialização deve corresponder exatamente ao assembly usado durante a serialização.In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. O método Load da classe Assembly é usado para carregar o assembly.The Load method of the Assembly class is used to load the assembly.

Simple 0

No modo simples, o assembly usado durante a desserialização não precisa corresponder exatamente ao assembly usado durante a serialização.In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Especificamente, os números de versão não precisam corresponder, visto que o método LoadWithPartialName é usado para carregar o assembly.Specifically, the version numbers need not match as the LoadWithPartialName method is used to load the assembly.

Aplica-se a