[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / class / System.Configuration / System.Configuration.Internal / IConfigurationManagerInternal.cs
index 9a9d539b301968f0ef5415dc3a0bbfb634bf7d51..ffcaa134ba76a272f9d2b4d3396319486b31bc24 100644 (file)
@@ -26,7 +26,6 @@
 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
 //
 
-#if NET_2_0
 
 using System;
 
@@ -35,14 +34,17 @@ namespace System.Configuration.Internal
        [System.Runtime.InteropServices.ComVisible (false)]
        public interface IConfigurationManagerInternal
        {
+               string ApplicationConfigUri { get; }
                string ExeLocalConfigDirectory { get; }
+               string ExeLocalConfigPath { get; }
                string ExeProductName { get; }
                string ExeProductVersion { get; }
                string ExeRoamingConfigDirectory { get; }
+               string ExeRoamingConfigPath { get; }
+               string MachineConfigPath { get; }
                bool SetConfigurationSystemInProgress { get; }
                bool SupportsUserConfig { get; }
                string UserConfigFilename { get; }
        }
 }
 
-#endif