[corlib] Parse datetime string using culture calendar. Fixes #18052
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Messaging / Header.cs
index 3292a96e21a2171757f85065f4e5d2747ddffbfe..b645d69015253412ccdb80d717eb18773eef5073 100644 (file)
@@ -35,22 +35,23 @@ using System.Collections;
 namespace System.Runtime.Remoting.Messaging {\r
 \r
        [Serializable]\r
+       [System.Runtime.InteropServices.ComVisible (true)]\r
        public class Header {\r
-               public Header (string name, object value) :\r
-                       this (name, value, true)\r
+               public Header (string _Name, object _Value) :\r
+                       this (_Name, _Value, true)\r
                {\r
                }\r
 \r
-               public Header (string name, object value, bool must_understand) :\r
-                       this (name, value, must_understand, null)\r
+               public Header (string _Name, object _Value, bool _MustUnderstand) :\r
+                       this (_Name, _Value, _MustUnderstand, null)\r
                {\r
                }\r
 \r
-               public Header (string name, object value, bool must_understand, string header_namespace) {\r
-                       this.Name = name;\r
-                       this.Value = value;\r
-                       this.MustUnderstand = must_understand;\r
-                       this.HeaderNamespace = header_namespace;\r
+               public Header (string _Name, object _Value, bool _MustUnderstand, string _HeaderNamespace) {\r
+                       this.Name = _Name;\r
+                       this.Value = _Value;\r
+                       this.MustUnderstand = _MustUnderstand;\r
+                       this.HeaderNamespace = _HeaderNamespace;\r
                }\r
 \r
                // fields\r