本文整理匯總了C#中System.AppDomainHandle類的典型用法代碼示例。如果您正苦於以下問題:C# AppDomainHandle類的具體用法?C# AppDomainHandle怎麽用?C# AppDomainHandle使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
AppDomainHandle類屬於System命名空間,在下文中一共展示了AppDomainHandle類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: SetCanonicalConditionalAptcaList
private static extern void SetCanonicalConditionalAptcaList(AppDomainHandle appDomain, string canonicalList);
示例2: SetSecurityHomogeneousFlag
private static extern void SetSecurityHomogeneousFlag(AppDomainHandle domain,
[MarshalAs(UnmanagedType.Bool)] bool runtimeSuppliedHomogenousGrantSet);
示例3: SetLegacyCasPolicyEnabled
private static extern void SetLegacyCasPolicyEnabled(AppDomainHandle domain);
示例4: GetAppDomainManagerType
private static extern void GetAppDomainManagerType(AppDomainHandle domain,
StringHandleOnStack retAssembly,
StringHandleOnStack retType);
示例5: SetAppDomainManagerType
private static extern void SetAppDomainManagerType(AppDomainHandle domain,
string assembly,
string type);
示例6: GetIsLegacyCasPolicyEnabled
private static extern bool GetIsLegacyCasPolicyEnabled(AppDomainHandle domain);
示例7: GetGrantSet
private static extern void GetGrantSet(AppDomainHandle domain, ObjectHandleOnStack retGrantSet);
示例8: DisableFusionUpdatesFromADManager
private static extern bool DisableFusionUpdatesFromADManager(AppDomainHandle domain);
示例9: SetupDomainSecurity
private static extern void SetupDomainSecurity(AppDomainHandle appDomain,
ObjectHandleOnStack appDomainEvidence,
IntPtr creatorsSecurityDescriptor,
[MarshalAs(UnmanagedType.Bool)] bool publishAppDomain);
示例10: CreateAppDomain
private AppDomainHandle CreateAppDomain(string baseDirectory)
{
var friendlyName = String.Format("Graywulf_{0}", Guid.NewGuid());
// Shadow copying assablies is necessary for the scheduler to work, however it is not supported
// under Windows 2003. Since web servers still run this, a workaround has to be made here.
string shadowcopy;
if (System.Environment.OSVersion.Platform == PlatformID.Win32NT &&
System.Environment.OSVersion.Version.Major >= 6)
{
shadowcopy = "true";
}
else
{
shadowcopy = "false";
}
var setup = new AppDomainSetup()
{
ApplicationBase = baseDirectory,
ApplicationName = AppDomain.CurrentDomain.SetupInformation.ApplicationName,
ConfigurationFile = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile,
DisallowApplicationBaseProbing = false,
DisallowBindingRedirects = true,
DisallowCodeDownload = true,
ShadowCopyFiles = shadowcopy,
//CachePath = "",
//DynamicBase = "",
//PrivateBinPath = "",
//PrivateBinPathProbe = "",
//ShadowCopyDirectories = "",
};
// Create the domain
var ad = AppDomain.CreateDomain(friendlyName, null, setup);
// Create and unwrap the handler that allows interaction with the domain
var helper = AppDomainHelper.CreateInstanceAndUnwrap(ad);
// Create and return the handle to the new domain
var handle = new AppDomainHandle()
{
AppDomain = ad,
Helper = helper,
};
// Save handle for future use
appDomains.Add(ad.Id, handle);
return handle;
}