16 instantiations of BinaryFormatter
Microsoft.Build.Engine (4)
Engine\NodeLoggingEvent.cs (1)
282private static BinaryFormatter binaryFormatter = new BinaryFormatter();
Introspector\NodeStatus.cs (1)
241private static BinaryFormatter formatter = new BinaryFormatter();
LocalProvider\LocalCallDescriptor.cs (1)
184private static BinaryFormatter formatter = new BinaryFormatter();
LocalProvider\SharedMemory.cs (1)
249this.binaryFormatter = new BinaryFormatter();
Microsoft.Build.Framework (2)
BinaryTranslator.cs (2)
500BinaryFormatter formatter = new BinaryFormatter(); 1150BinaryFormatter formatter = new BinaryFormatter();
MSBuildTaskHost (2)
BinaryTranslator.cs (2)
500BinaryFormatter formatter = new BinaryFormatter(); 1150BinaryFormatter formatter = new BinaryFormatter();
PresentationCore (2)
System\Windows\dataobject.cs (2)
1688formatter = new BinaryFormatter(); 3051formatter = new BinaryFormatter();
PresentationFramework (1)
MS\Internal\DataStreams.cs (1)
364_formatter = new BinaryFormatter();
System.ComponentModel.TypeConverter (2)
System\ComponentModel\Design\DesigntimeLicenseContextSerializer.cs (2)
57var formatter = new BinaryFormatter(); 139var formatter = new BinaryFormatter();
System.Data.Common (2)
System\Data\DataSet.cs (2)
350BinaryFormatter bf = new BinaryFormatter(null, new StreamingContext(context.State, false)); 434BinaryFormatter bf = new BinaryFormatter(null, new StreamingContext(context.State, false));
System.Resources.Extensions (1)
System\Resources\Extensions\DeserializingResourceReader.cs (1)
44_formatter ??= new BinaryFormatter()
22 references to BinaryFormatter
Microsoft.Build.Engine (4)
Engine\NodeLoggingEvent.cs (1)
282private static BinaryFormatter binaryFormatter = new BinaryFormatter();
Introspector\NodeStatus.cs (1)
241private static BinaryFormatter formatter = new BinaryFormatter();
LocalProvider\LocalCallDescriptor.cs (1)
184private static BinaryFormatter formatter = new BinaryFormatter();
LocalProvider\SharedMemory.cs (1)
912private BinaryFormatter binaryFormatter;
Microsoft.Build.Framework (2)
BinaryTranslator.cs (2)
500BinaryFormatter formatter = new BinaryFormatter(); 1150BinaryFormatter formatter = new BinaryFormatter();
MSBuildTaskHost (2)
BinaryTranslator.cs (2)
500BinaryFormatter formatter = new BinaryFormatter(); 1150BinaryFormatter formatter = new BinaryFormatter();
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
743[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.Serialization.Formatters.Binary.BinaryFormatter))]
netstandard (1)
netstandard.cs (1)
1762[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.Serialization.Formatters.Binary.BinaryFormatter))]
PresentationCore (2)
System\Windows\dataobject.cs (2)
1680BinaryFormatter formatter; 3049BinaryFormatter formatter;
PresentationFramework (2)
MS\Internal\DataStreams.cs (2)
358private BinaryFormatter Formatter 372static private BinaryFormatter _formatter;
System.ComponentModel.TypeConverter (2)
System\ComponentModel\Design\DesigntimeLicenseContextSerializer.cs (2)
57var formatter = new BinaryFormatter(); 139var formatter = new BinaryFormatter();
System.Data.Common (2)
System\Data\DataSet.cs (2)
350BinaryFormatter bf = new BinaryFormatter(null, new StreamingContext(context.State, false)); 434BinaryFormatter bf = new BinaryFormatter(null, new StreamingContext(context.State, false));
System.Resources.Extensions (1)
System\Resources\Extensions\DeserializingResourceReader.cs (1)
17private BinaryFormatter? _formatter;
System.Runtime.Serialization.Formatters (3)
System\Runtime\Serialization\Formatters\Binary\BinaryObjectInfo.cs (3)
205typeInformation = BinaryFormatter.GetTypeInformation(_si.ObjectType); 212typeInformation ??= BinaryFormatter.GetTypeInformation(_si.ObjectType); 770TypeInformation typeInformation = BinaryFormatter.GetTypeInformation(type);