mscorlib(4.0.0.0) API with additions
StreamingContextStates.cs
2 
4 {
7  [Flags]
8  [ComVisible(true)]
10  {
12  CrossProcess = 0x1,
14  CrossMachine = 0x2,
16  File = 0x4,
18  Persistence = 0x8,
20  Remoting = 0x10,
22  Other = 0x20,
24  Clone = 0x40,
26  CrossAppDomain = 0x80,
28  All = 0xFF
29  }
30 }
Specifies that the object graph is being cloned. Users can assume that the cloned graph will continue...
Specifies that the source or destination context is a persisted store, which could include databases,...
Specifies that the source or destination context is a different computer.
Specifies that the source or destination context is a different process on the same computer.
Definition: __Canon.cs:3
Specifies that the source or destination context is a different AppDomain. (For a description of AppD...
Attribute can be applied to any application element.
Specifies that the data is remoted to a context in an unknown location. Users cannot make any assumpt...
Specifies that the class can be serialized.
StreamingContextStates
Defines a set of flags that specifies the source or destination context for the stream during seriali...