23 references to StreamingContext
mscorlib (14)
system\exception.cs (1)
531StreamingContext sc = new StreamingContext(StreamingContextStates.All);
system\resources\resourcereader.cs (1)
861BinaryFormatter bf = new BinaryFormatter(null, new StreamingContext(StreamingContextStates.File | StreamingContextStates.Persistence));
system\resources\resourcewriter.cs (1)
381IFormatter objFormatter = new BinaryFormatter(null, new StreamingContext(StreamingContextStates.File | StreamingContextStates.Persistence));
system\runtime\remoting\crossappdomainchannel.cs (5)
679fmt.Context = new StreamingContext(StreamingContextStates.CrossAppDomain); 714fmt.Context = new StreamingContext(StreamingContextStates.CrossAppDomain); 728fmt.Context = new StreamingContext(StreamingContextStates.CrossAppDomain); 761fmt.Context = new StreamingContext(StreamingContextStates.CrossAppDomain); 793fmt.Context = new StreamingContext(StreamingContextStates.CrossAppDomain);
system\runtime\remoting\remotingservices.cs (3)
2411fmt.Context = new StreamingContext(StreamingContextStates.Other); 2424fmt.Context = new StreamingContext(StreamingContextStates.Other); 2456fmt.Context = new StreamingContext(StreamingContextStates.Other);
system\runtime\serialization\formatters\binary\binaryformatter.cs (1)
99m_context = new StreamingContext(StreamingContextStates.All);
system\runtime\serialization\formatterservices.cs (1)
179return GetSerializableMembers(type, new StreamingContext(StreamingContextStates.All));
system\runtime\serialization\objectclonehelper.cs (1)
34static readonly StreamingContext s_cloneContext = new StreamingContext(StreamingContextStates.CrossAppDomain);
System.Runtime.Remoting (2)
channels\core\corechannel.cs (2)
419remotingFormatter.Context = new StreamingContext(StreamingContextStates.Other); 445remotingFormatter.Context = new StreamingContext(StreamingContextStates.Other);
System.Runtime.Serialization (6)
System\Runtime\Serialization\Json\XmlObjectSerializerReadContextComplexJson.cs (1)
27new StreamingContext(StreamingContextStates.All),
System\Runtime\Serialization\Json\XmlObjectSerializerWriteContextComplexJson.cs (1)
24new StreamingContext(StreamingContextStates.All),
System\Runtime\Serialization\NetDataContractSerializer.cs (3)
33: this(new StreamingContext(StreamingContextStates.All)) 52: this(rootName, rootNamespace, new StreamingContext(StreamingContextStates.All), Int32.MaxValue, false, FormatterAssemblyStyle.Full, null) 68: this(rootName, rootNamespace, new StreamingContext(StreamingContextStates.All), Int32.MaxValue, false, FormatterAssemblyStyle.Full, null)
System\Runtime\Serialization\XmlObjectSerializerContext.cs (1)
60new StreamingContext(StreamingContextStates.All),
System.Web (1)
UI\ObjectStateFormatter.cs (1)
1225return new StreamingContext(StreamingContextStates.All);