Class ProcessService
Provides functionality for managing and executing external processes. This service supports a variety of operations including running processes with options for cancellation, timeouts, and potentially more features in the future.
Inheritance
Inherited Members
Namespace: Coree.NETStandard.Services.ProcessManagement
Assembly: Coree.NETStandard.dll
Syntax
public class ProcessService : ServiceFactoryEx<ProcessService>, IDisposable, IProcessService
Constructors
| Edit this page View SourceProcessService(ILogger<ProcessService>)
Initializes a new instance of the ProcessService class with the specified logger and configuration.
Declaration
public ProcessService(ILogger<ProcessService> logger)
Parameters
Type | Name | Description |
---|---|---|
ILogger<ProcessService> | logger | The logger instance for logging messages. |
Methods
| Edit this page View SourceRunProcessWithCancellationSupportAsync(string, string, string, bool, CancellationToken, TimeSpan?)
Runs an external process asynchronously with options for cancellation and timeout.
Declaration
public 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. |