mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 10:08:57 +00:00
Remove obsolete InputOutputStream transport, now that the Stream transport is implemented
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user