// This private constructor exists as a temporary measure so that we can create Execution domains without enabling the // general ReflectionDomain case. internal ReflectionDomain(ReflectionDomainSetup setup, int meaningless) { this.ReflectionDomainSetup = setup; }
public ReflectionDomain(ReflectionDomainSetup setup) { throw new PlatformNotSupportedException(); }
internal ExecutionDomain(ReflectionDomainSetup executionDomainSetup, ExecutionEnvironment executionEnvironment) { ExecutionEnvironment = executionEnvironment; ReflectionDomainSetup = executionDomainSetup; }