[corlib] RemotingConfiguration now try to use the bundled machine.config first.
[mono.git] / mcs / class / corlib / System / Environment.cs
index 22b4ef6748ccc18659e36beff266127d8ce5c58f..df80c8348a6bd2cee43cebe596f88767fbb2749f 100644 (file)
@@ -996,6 +996,14 @@ namespace System {
                [MethodImplAttribute (MethodImplOptions.InternalCall)]
                internal extern static int GetPageSize ();
 
+               [MethodImplAttribute(MethodImplOptions.InternalCall)]
+               extern private static string get_bundled_machine_config ();
+
+               internal static string GetBundledMachineConfig ()
+               {
+                       return get_bundled_machine_config ();
+               }
+
                static internal bool IsUnix {
                        get {
                                int platform = (int) Environment.Platform;