1 interface inheriting from IFormatter
mscorlib (1)
system\runtime\remoting\iremotingformatter.cs (1)
21public interface IRemotingFormatter : IFormatter {
3 implementations of IFormatter
mscorlib (1)
system\runtime\serialization\formatter.cs (1)
33public abstract class Formatter : IFormatter {
System.Runtime.Serialization (1)
System\Runtime\Serialization\NetDataContractSerializer.cs (1)
19public sealed class NetDataContractSerializer : XmlObjectSerializer, IFormatter
System.Web (1)
UI\ObjectStateFormatter.cs (1)
45public sealed class ObjectStateFormatter : IStateFormatter, IStateFormatter2, IFormatter {
20 references to IFormatter
mscorlib (2)
system\resources\resourcewriter.cs (2)
381IFormatter objFormatter = new BinaryFormatter(null, new StreamingContext(StreamingContextStates.File | StreamingContextStates.Persistence)); 595private void WriteValue(ResourceTypeCode typeCode, Object value, BinaryWriter writer, IFormatter objFormatter)
System (2)
compmod\system\componentmodel\design\DesigntimeLicenseContextSerializer.cs (2)
43IFormatter formatter = new BinaryFormatter(); 49IFormatter formatter = new BinaryFormatter();
System.Transactions (2)
System\Transactions\Oletx\OletxResourceManager.cs (1)
455IFormatter formatter = new BinaryFormatter();
System\Transactions\TransactionManager.cs (1)
546IFormatter formatter = new BinaryFormatter();
System.Web (7)
UI\ObjectStateFormatter.cs (7)
685IFormatter formatter = new BinaryFormatter(); 1176IFormatter formatter = new BinaryFormatter(); 1213SerializationBinder IFormatter.Binder { 1223StreamingContext IFormatter.Context { 1233ISurrogateSelector IFormatter.SurrogateSelector { 1243object IFormatter.Deserialize(Stream serializationStream) { 1249void IFormatter.Serialize(Stream serializationStream, object stateGraph) {
System.Windows.Forms (5)
winforms\Managed\System\Resources\ResXDataNode.cs (4)
71private IFormatter binaryFormatter = null; 330private IFormatter CreateSoapFormatter() { 451IFormatter formatter = binaryFormatter; 472IFormatter formatter = CreateSoapFormatter();
winforms\Managed\System\Resources\ResXResourceWriter.cs (1)
232IFormatter binaryFormatter = new System.Runtime.Serialization.Formatters.Binary.BinaryFormatter ();
System.Workflow.ComponentModel (2)
AuthoringOM\Activity.cs (2)
1058public void Save(Stream stream, IFormatter formatter) 1100public static Activity Load(Stream stream, Activity outerActivity, IFormatter formatter)