Remove obsolete InputOutputStream transport, now that the Stream transport is implemented

This commit is contained in:
SteveSandersonMS
2016-06-01 17:03:05 +01:00
parent 50ee405656
commit f2e89fd3bc
5 changed files with 1 additions and 112 deletions

View File

@@ -27,23 +27,13 @@ namespace Microsoft.AspNetCore.NodeServices
_projectPath = projectPath;
_commandLineArguments = commandLineArguments ?? string.Empty;
}
public string CommandLineArguments
{
get { return _commandLineArguments; }
set { _commandLineArguments = value; }
}
protected Process NodeProcess
{
get
{
// This is only exposed to support the unreliable InputOutputStreamNodeInstance, which is just to verify that
// other hosting/transport mechanisms are possible. This shouldn't really be exposed, and will be removed.
return this._nodeProcess;
}
}
public Task<T> Invoke<T>(string moduleName, params object[] args)
=> InvokeExport<T>(moduleName, null, args);