7 references to FormatterTypeStyle
BinaryFormatTests (2)
FormatTests\Common\SerializationTest.cs (2)
16FormatterTypeStyle typeStyle = FormatterTypeStyle.TypesAlways)
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
745[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.Serialization.Formatters.FormatterTypeStyle))]
netstandard (1)
netstandard.cs (1)
1764[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.Serialization.Formatters.FormatterTypeStyle))]
System.Runtime.Serialization.Formatters (3)
System\Runtime\Serialization\Formatters\Binary\BinaryFormatter.cs (3)
12internal FormatterTypeStyle _typeFormat = FormatterTypeStyle.TypesAlways; // For version resiliency, always put out types 16public FormatterTypeStyle TypeFormat { get { return _typeFormat; } set { _typeFormat = value; } }