FormatterAssemblyStyle Enumerazione
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Attenzione
Formatter-based serialization is obsolete and should not be used.
Indica il metodo che verrà utilizzato durante la deserializzazione per il posizionamento e il carico di assembly.
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
- Ereditarietà
- Attributi
Campi
Full | 1 | Nella modalità estesa, l'assembly utilizzato durante la deserializzazione deve corrispondere esattamente a quello utilizzato durante la serializzazione. Per caricare l'assembly, viene utilizzato il metodo Load della classe Assembly. |
Simple | 0 | Nella modalità semplice, non è necessario che l'assembly utilizzato durante la deserializzazione corrisponda esattamente a quello utilizzato durante la serializzazione. In modo specifico, non è necessario che i numeri di versione corrispondano quando viene utilizzato il metodo LoadWithPartialName per caricare l'assembly. |