Esempio n. 1
0
 protected internal JsonRpcSandbox(JsonRpcExecutionHost owner, string name) : base(name)
 {
     Owner = owner ?? throw new ArgumentNullException(nameof(owner));
 }
 public SandboxContextFeature(JsonRpcExecutionHost executionHost, JsonRpcSandbox sandbox)
 {
     ExecutionHost = executionHost ?? throw new ArgumentNullException(nameof(executionHost));
     Sandbox       = sandbox;
 }