[corlib] Fixed StringBuilder construction bugs in marshalling caused by changes to...
[mono.git] / mcs / class / corlib / System.Runtime.Serialization.Formatters / InternalRM.cs
index 12413c7e47862b2a8be156000dda11551f7688d7..88ac0a141e2e2724b1b1b8980717b4bc25a4a72a 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+using System.Runtime.InteropServices;
+using System.Diagnostics;
+
 namespace System.Runtime.Serialization.Formatters
 {
        //LAMESPEC: Use of this class??
+       [ComVisible (true)]
        public sealed class InternalRM
        {
-               private InternalRM ()
+               public InternalRM ()
+               {
+               }
+
+               [Conditional ("_LOGGING")]
+               public static void InfoSoap (params object[] messages)
+               {
+                       throw new NotImplementedException ();
+               }
+               
+               public static bool SoapCheckEnabled ()
                {
+                       throw new NotImplementedException ();
                }
        }
 }