33 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)
205AssemblyFormat = FormatterAssemblyStyle.Simple
System.Private.Windows.Core.Tests (10)
System\Private\Windows\Nrbf\BinaryFormatterHelpers.cs (10)
32FormatterAssemblyStyle assemblyFormat = FormatterAssemblyStyle.Full, 68FormatterAssemblyStyle assemblyStyle = FormatterAssemblyStyle.Full) 88FormatterAssemblyStyle assemblyStyle = FormatterAssemblyStyle.Full) 102FormatterAssemblyStyle assemblyStyle = FormatterAssemblyStyle.Full) 121FormatterAssemblyStyle assemblyStyle = FormatterAssemblyStyle.Full)
System.Private.Windows.Core.TestUtilities (11)
BinarySerialization.cs (11)
64public static T EnsureDeserialize<T>(string blob, FormatterAssemblyStyle assemblyStyle = FormatterAssemblyStyle.Simple) 70static object FromBase64String(string base64String, FormatterAssemblyStyle assemblyStyle) 76static object FromByteArray(byte[] raw, FormatterAssemblyStyle assemblyStyle) 90FormatterAssemblyStyle assemblyFormat = FormatterAssemblyStyle.Simple) 95static byte[] ToByteArray(object @object, FormatterAssemblyStyle assemblyFormat) 114FormatterAssemblyStyle assemblyFormat = FormatterAssemblyStyle.Simple, 143FormatterAssemblyStyle assemblyFormat = FormatterAssemblyStyle.Simple,
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; } }