Interface IProcessService
Defines a service for running external processes with support for cancellation and timeouts.
Namespace: Coree.NETStandard.Services.ProcessManagement
Assembly: Coree.NETStandard.dll
Syntax
public interface IProcessService
Methods
| Edit this page View SourceRunProcessWithCancellationSupportAsync(string, string, string, bool, CancellationToken, TimeSpan?)
Runs an external process asynchronously with options for cancellation and timeout.
Declaration
Task<ProcessRunResult> RunProcessWithCancellationSupportAsync(string fileName, string arguments, string workingDirectory, bool killOnCancel = false, CancellationToken cancellationWaitRequest = default, TimeSpan? timeout = null)
Parameters
Type | Name | Description |
---|---|---|
string | fileName | The name of the executable to run. |
string | arguments | The arguments to pass to the executable. |
string | workingDirectory | The working directory for the process. |
bool | killOnCancel | Indicates whether the process should be killed if a cancellation is requested. |
CancellationToken | cancellationWaitRequest | The cancellation token that can be used to request cancellation of the operation. |
TimeSpan? | timeout | Optional timeout after which the process will be killed if not completed. |
Returns
Type | Description |
---|---|
Task<ProcessRunResult> | A task that represents the asynchronous operation, containing the result of the process execution. |