Merge pull request #1659 from alexanderkyte/stringbuilder-referencesource
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Messaging / MethodReturnDictionary.cs
index 1fe3bae6f7bb2c9834e9cb5cd2fd3ed7a1f94e29..7a7df1398110bb395c34bec9cae048e7e1d52773 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-using System;\r
-\r
-namespace System.Runtime.Remoting.Messaging\r
-{\r
-       internal class MethodReturnDictionary : MethodDictionary\r
-       {\r
-               public static string[] InternalReturnKeys = new string[] {"__Uri", "__MethodName", "__TypeName", "__MethodSignature", "__OutArgs", "__Return", "__CallContext"};\r
-               public static string[] InternalExceptionKeys = new string[] {"__CallContext"};\r
-\r
-               public MethodReturnDictionary (IMethodReturnMessage message) : base (message)\r
-               {\r
-                       if (message.Exception == null)\r
-                               MethodKeys = InternalReturnKeys;\r
-                       else\r
-                               MethodKeys = InternalExceptionKeys;\r
+using System;
+
+namespace System.Runtime.Remoting.Messaging
+{
+       internal class MethodReturnDictionary : MessageDictionary
+       {
+               public static string[] InternalReturnKeys = new string[] {"__Uri", "__MethodName", "__TypeName", "__MethodSignature", "__OutArgs", "__Return", "__CallContext"};
+               public static string[] InternalExceptionKeys = new string[] {"__CallContext"};
+
+               public MethodReturnDictionary (IMethodReturnMessage message) : base (message)
+               {
+                       if (message.Exception == null)
+                               MethodKeys = InternalReturnKeys;
+                       else
+                               MethodKeys = InternalExceptionKeys;
                }
-       }\r
-}\r
+       }
+}