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)
162
AssemblyFormat =
FormatterAssemblyStyle
.Simple
System.Private.Windows.Core.TestUtilities (7)
BinarySerialization.cs (7)
62
public static T EnsureDeserialize<T>(string blob,
FormatterAssemblyStyle
assemblyStyle =
FormatterAssemblyStyle
.Simple)
68
static object FromBase64String(string base64String,
FormatterAssemblyStyle
assemblyStyle)
74
static object FromByteArray(byte[] raw,
FormatterAssemblyStyle
assemblyStyle)
97
FormatterAssemblyStyle
assemblyStyle =
FormatterAssemblyStyle
.Simple)
102
static byte[] ToByteArray(object obj,
FormatterAssemblyStyle
assemblyStyle)
System.Resources.Extensions (6)
System\Resources\Extensions\BinaryFormat\BinaryFormattedObject.Options.cs (2)
18
public
FormatterAssemblyStyle
AssemblyMatching { get; set; } =
FormatterAssemblyStyle
.Simple;
System\Resources\Extensions\BinaryFormat\BinaryFormattedObject.TypeResolver.cs (3)
21
private readonly
FormatterAssemblyStyle
_assemblyMatching;
68
if (_assemblyMatching !=
FormatterAssemblyStyle
.Simple)
79
Type? type = _assemblyMatching !=
FormatterAssemblyStyle
.Simple
System\Resources\Extensions\BinaryFormat\Deserializer\ClassRecordFieldInfoDeserializer.cs (1)
58
if (Deserializer.Options.AssemblyMatching ==
FormatterAssemblyStyle
.Simple
System.Runtime.Serialization.Formatters (3)
System\Runtime\Serialization\Formatters\Binary\BinaryFormatter.cs (3)
13
internal
FormatterAssemblyStyle
_assemblyFormat =
FormatterAssemblyStyle
.Simple;
17
public
FormatterAssemblyStyle
AssemblyFormat { get { return _assemblyFormat; } set { _assemblyFormat = value; } }