當前位置: 首頁>>代碼示例>>C#>>正文


C# System.AppDomainHandle類代碼示例

本文整理匯總了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);
開發者ID:Rayislandstyle,項目名稱:dotnet-coreclr,代碼行數:1,代碼來源:AppDomain.cs

示例2: SetSecurityHomogeneousFlag

 private static extern void SetSecurityHomogeneousFlag(AppDomainHandle domain,
                                                       [MarshalAs(UnmanagedType.Bool)] bool runtimeSuppliedHomogenousGrantSet);
開發者ID:Rayislandstyle,項目名稱:dotnet-coreclr,代碼行數:2,代碼來源:AppDomain.cs

示例3: SetLegacyCasPolicyEnabled

 private static extern void SetLegacyCasPolicyEnabled(AppDomainHandle domain);
開發者ID:Rayislandstyle,項目名稱:dotnet-coreclr,代碼行數:1,代碼來源:AppDomain.cs

示例4: GetAppDomainManagerType

 private static extern void GetAppDomainManagerType(AppDomainHandle domain,
                                                    StringHandleOnStack retAssembly,
                                                    StringHandleOnStack retType);
開發者ID:Rayislandstyle,項目名稱:dotnet-coreclr,代碼行數:3,代碼來源:AppDomain.cs

示例5: SetAppDomainManagerType

 private static extern void SetAppDomainManagerType(AppDomainHandle domain,
                                                    string assembly,
                                                    string type);
開發者ID:Rayislandstyle,項目名稱:dotnet-coreclr,代碼行數:3,代碼來源:AppDomain.cs

示例6: GetIsLegacyCasPolicyEnabled

 private static extern bool GetIsLegacyCasPolicyEnabled(AppDomainHandle domain);
開發者ID:Rayislandstyle,項目名稱:dotnet-coreclr,代碼行數:1,代碼來源:AppDomain.cs

示例7: GetGrantSet

 private static extern void GetGrantSet(AppDomainHandle domain, ObjectHandleOnStack retGrantSet);
開發者ID:Rayislandstyle,項目名稱:dotnet-coreclr,代碼行數:1,代碼來源:AppDomain.cs

示例8: DisableFusionUpdatesFromADManager

 private static extern bool DisableFusionUpdatesFromADManager(AppDomainHandle domain);
開發者ID:Rayislandstyle,項目名稱:dotnet-coreclr,代碼行數:1,代碼來源:AppDomain.cs

示例9: SetupDomainSecurity

 private static extern void SetupDomainSecurity(AppDomainHandle appDomain,
                                                ObjectHandleOnStack appDomainEvidence,
                                                IntPtr creatorsSecurityDescriptor,
                                                [MarshalAs(UnmanagedType.Bool)] bool publishAppDomain);
開發者ID:Rayislandstyle,項目名稱:dotnet-coreclr,代碼行數:4,代碼來源:AppDomain.cs

示例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;
        }
開發者ID:horvatferi,項目名稱:graywulf,代碼行數:52,代碼來源:AppDomainManager.cs


注:本文中的System.AppDomainHandle類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。