IInternalConfigHostPaths
using System.Runtime.InteropServices;
namespace System.Configuration.Internal
{
[ComVisible(false)]
public interface IInternalConfigHostPaths
{
bool HasLocalConfig { get; }
bool HasRoamingConfig { get; }
bool IsAppConfigHttp { get; }
void RefreshConfigPaths();
}
}