mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-30 05:15:59 +02:00
Process attach improvements
This commit is contained in:
parent
5146a92f2e
commit
2746a53839
5 changed files with 67 additions and 52 deletions
|
@ -82,7 +82,7 @@ namespace System.Diagnostics
|
|||
return .Ok;
|
||||
}
|
||||
|
||||
public Result<void> AttachStandardInput(FileStream stream)
|
||||
public Result<void> AttachStandardInput(IFileStream stream)
|
||||
{
|
||||
if (mSpawn == null)
|
||||
return .Err;
|
||||
|
@ -94,7 +94,7 @@ namespace System.Diagnostics
|
|||
return .Ok;
|
||||
}
|
||||
|
||||
public Result<void> AttachStandardOutput(FileStream stream)
|
||||
public Result<void> AttachStandardOutput(IFileStream stream)
|
||||
{
|
||||
if (mSpawn == null)
|
||||
return .Err;
|
||||
|
@ -106,7 +106,7 @@ namespace System.Diagnostics
|
|||
return .Ok;
|
||||
}
|
||||
|
||||
public Result<void> AttachStandardError(FileStream stream)
|
||||
public Result<void> AttachStandardError(IFileStream stream)
|
||||
{
|
||||
if (mSpawn == null)
|
||||
return .Err;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue