19 references to FormatterAssemblyStyle
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
744[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.Serialization.Formatters.FormatterAssemblyStyle))]
netstandard (1)
netstandard.cs (1)
1763[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.Serialization.Formatters.FormatterAssemblyStyle))]
System.Private.Windows.Core (1)
System\Private\Windows\Ole\BinaryFormatUtilities.cs (1)
162AssemblyFormat = FormatterAssemblyStyle.Simple
System.Private.Windows.Core.TestUtilities (7)
BinarySerialization.cs (7)
62public static T EnsureDeserialize<T>(string blob, FormatterAssemblyStyle assemblyStyle = FormatterAssemblyStyle.Simple) 68static object FromBase64String(string base64String, FormatterAssemblyStyle assemblyStyle) 74static object FromByteArray(byte[] raw, FormatterAssemblyStyle assemblyStyle) 97FormatterAssemblyStyle assemblyStyle = FormatterAssemblyStyle.Simple) 102static byte[] ToByteArray(object obj, FormatterAssemblyStyle assemblyStyle)
System.Resources.Extensions (6)
System\Resources\Extensions\BinaryFormat\BinaryFormattedObject.Options.cs (2)
18public FormatterAssemblyStyle AssemblyMatching { get; set; } = FormatterAssemblyStyle.Simple;
System\Resources\Extensions\BinaryFormat\BinaryFormattedObject.TypeResolver.cs (3)
21private readonly FormatterAssemblyStyle _assemblyMatching; 68if (_assemblyMatching != FormatterAssemblyStyle.Simple) 79Type? type = _assemblyMatching != FormatterAssemblyStyle.Simple
System\Resources\Extensions\BinaryFormat\Deserializer\ClassRecordFieldInfoDeserializer.cs (1)
58if (Deserializer.Options.AssemblyMatching == FormatterAssemblyStyle.Simple
System.Runtime.Serialization.Formatters (3)
System\Runtime\Serialization\Formatters\Binary\BinaryFormatter.cs (3)
13internal FormatterAssemblyStyle _assemblyFormat = FormatterAssemblyStyle.Simple; 17public FormatterAssemblyStyle AssemblyFormat { get { return _assemblyFormat; } set { _assemblyFormat = value; } }