Jo Shields 3c1f479b9d Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
2015-04-07 09:35:12 +01:00

86 lines
1.4 KiB
C#

// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** Interface: IAppDomainSetup
**
** <OWNER>[....]</OWNER>
**
**
** Purpose: Properties exposed to COM
**
**
===========================================================*/
namespace System {
using System.Runtime.InteropServices;
[GuidAttribute("27FFF232-A7A8-40dd-8D4A-734AD59FCD41")]
[InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
[System.Runtime.InteropServices.ComVisible(true)]
public interface IAppDomainSetup
{
String ApplicationBase {
get;
set;
}
String ApplicationName
{
get;
set;
}
String CachePath
{
get;
set;
}
String ConfigurationFile {
get;
set;
}
String DynamicBase
{
get;
set;
}
String LicenseFile
{
get;
set;
}
String PrivateBinPath
{
get;
set;
}
String PrivateBinPathProbe
{
get;
set;
}
String ShadowCopyDirectories
{
get;
set;
}
String ShadowCopyFiles
{
get;
set;
}
}
}