コード例 #1
0
 // 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;
 }
コード例 #2
0
 public ReflectionDomain(ReflectionDomainSetup setup)
 {
     throw new PlatformNotSupportedException();
 }
コード例 #3
0
 public ReflectionDomain(ReflectionDomainSetup setup)
 {
     throw new PlatformNotSupportedException();
 }
コード例 #4
0
 // 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;
 }
コード例 #5
0
ファイル: ExecutionDomain.cs プロジェクト: kyulee1/corert
 internal ExecutionDomain(ReflectionDomainSetup executionDomainSetup, ExecutionEnvironment executionEnvironment)
 {
     ExecutionEnvironment = executionEnvironment;
     ReflectionDomainSetup = executionDomainSetup;
 }