Browse Source

2002/03/07 Nick Drochak <[email protected]>

	* StreamingContextStates.cs: Add missing value (CrossAppDomain) and
	adjust All value accordingly.

svn path=/trunk/mcs/; revision=2957
Nick Drochak 24 years ago
parent
commit
ca777c6bc4

+ 5 - 0
mcs/class/corlib/System.Runtime.Serialization/ChangeLog

@@ -1,3 +1,8 @@
+2002/03/07  Nick Drochak <[email protected]>
+
+	* StreamingContextStates.cs: Add missing value (CrossAppDomain) and
+	adjust All value accordingly.
+
 2002-03-01  Duncan Mak  <[email protected]>
 
 	* ObjectIDGenerator.cs: Implemented.

+ 3 - 1
mcs/class/corlib/System.Runtime.Serialization/StreamingContextStates.cs

@@ -45,9 +45,11 @@ namespace System.Runtime.Serialization {
 		/// </summary>
 		Clone = 64,
 
+		CrossAppDomain = 128,
+
 		/// <summary>
 		/// </summary>
-		All = 127,
+		All = 255,
 	} // StreamingContextStates
 
 } // System.Runtime.Serialization