19 references to FormatterTypeStyle
mscorlib (13)
system\runtime\serialization\formatters\binary\binaryformatter.cs (3)
49internal FormatterTypeStyle m_typeFormat = FormatterTypeStyle.TypesAlways; // For version resiliency, always put out types 58public FormatterTypeStyle TypeFormat
system\runtime\serialization\formatters\binary\binaryformatterwriter.cs (2)
33internal FormatterTypeStyle formatterTypeStyle; 45internal __BinaryWriter(Stream sout, ObjectWriter objectWriter, FormatterTypeStyle formatterTypeStyle)
system\runtime\serialization\formatters\binary\binaryobjectwriter.cs (7)
387if (objectInfo.isSi || CheckTypeFormat(formatterEnums.FEtypeFormat, FormatterTypeStyle.TypesAlways)) 592if (CheckTypeFormat(formatterEnums.FEtypeFormat, FormatterTypeStyle.TypesAlways) || (objectInfo.isSi) ) 805if (CheckTypeFormat(formatterEnums.FEtypeFormat, FormatterTypeStyle.TypesAlways)) 1212if (!CheckTypeFormat(formatterEnums.FEtypeFormat, FormatterTypeStyle.XsdString)) 1241(CheckTypeFormat(formatterEnums.FEtypeFormat, FormatterTypeStyle.TypesAlways)))) 1417private bool CheckTypeFormat(FormatterTypeStyle test, FormatterTypeStyle want)
system\runtime\serialization\formatters\binary\binaryutilclasses.cs (1)
745internal FormatterTypeStyle FEtypeFormat;
System.Messaging (4)
System\Messaging\BinaryMessageFormatter.cs (3)
41public BinaryMessageFormatter(FormatterAssemblyStyle topObjectFormat, FormatterTypeStyle typeFormat) 72[MessagingDescription(Res.MsgTypeFormat), DefaultValueAttribute(FormatterTypeStyle.TypesWhenNeeded)] 73public FormatterTypeStyle TypeFormat
System\Messaging\Design\MessageFormatterConverter.cs (1)
100typeof(FormatterAssemblyStyle), typeof(FormatterTypeStyle) });
System.Runtime.Remoting (2)
channels\core\corechannel.cs (2)
474fmt.TypeFormat |= FormatterTypeStyle.TypesAlways; 476fmt.TypeFormat |= FormatterTypeStyle.XsdString;