System.AppDomain.CreateDomain C# (CSharp) Method

CreateDomain() public static method

public static CreateDomain ( string friendlyName ) : AppDomain
friendlyName string
return AppDomain
        public static AppDomain CreateDomain(string friendlyName)
        {
            if (friendlyName == null) throw new ArgumentNullException(nameof(friendlyName));
            throw new PlatformNotSupportedException();
        }

Usage Example

Example #1
0
        // static

        // FIXME: maybe AppDomain.CreateDomain should be calling this?
        protected static AppDomain CreateDomainHelper(string friendlyName, Evidence securityInfo, AppDomainSetup appDomainInfo)
        {
            return(AppDomain.CreateDomain(friendlyName, securityInfo, appDomainInfo));
        }