Introducing the Task-Based Asynchronous Pattern: Listing 4.

The Full RunProcessAsync

static public Task<Process> RunProcessAsync(string fileName,
  CancellationToken cancellationToken,
  IProgress<ProcessProgressEventArgs> progress = null,
  object objectState = null
)
{
  TaskCompletionSource<Process> taskCompletionSource =
    new TaskCompletionSource<Process>();
 
  Process process = new Process()
  {
    StartInfo = new ProcessStartInfo(fileName)
    {
      RedirectStandardOutput = progress != null,
      UseShellExecute = false
    },
    EnableRaisingEvents = true,
  };
 
  process.Exited += (sender, localEventArgs) =>
  {
    taskCompletionSource.SetResult(process);
  };
  
  if (progress != null)
  {
    process.OutputDataReceived += (sender, localEventArgs) =>
    {
      progress.Report(
        new ProcessProgressEventArgs(
          localEventArgs.Data, objectState));
    };
  }
 
  if (cancellationToken.IsCancellationRequested)
  {
    cancellationToken.ThrowIfCancellationRequested();
  }
 
  process.Start();
  if (progress != null) process.BeginOutputReadLine();
 
  cancellationToken.Register( ()=>
    {
      process.CloseMainWindow();
      cancellationToken.ThrowIfCancellationRequested();
    });

  return taskCompletionSource.Task;
}

About the Author

Mark Michaelis (http://IntelliTect.com/Mark) is the founder of IntelliTect and serves as the Chief Technical Architect and Trainer. Since 1996, he has been a Microsoft MVP for C#, Visual Studio Team System, and the Windows SDK and in 2007 he was recognized as a Microsoft Regional Director. He also serves on several Microsoft software design review teams, including C#, the Connected Systems Division, and VSTS. Mark speaks at developer conferences and has written numerous articles and books - Essential C# 5.0 is his most recent. Mark holds a Bachelor of Arts in Philosophy from the University of Illinois and a Masters in Computer Science from the Illinois Institute of Technology. When not bonding with his computer, Mark is busy with his family or training for another triathlon (having completed the Ironman in 2008). Mark lives in Spokane, Washington, with his wife Elisabeth and three children, Benjamin, Hanna and Abigail.

comments powered by Disqus

Featured

  • AI for GitHub Collaboration? Maybe Not So Much

    No doubt GitHub Copilot has been a boon for developers, but AI might not be the best tool for collaboration, according to developers weighing in on a recent social media post from the GitHub team.

  • Visual Studio 2022 Getting VS Code 'Command Palette' Equivalent

    As any Visual Studio Code user knows, the editor's command palette is a powerful tool for getting things done quickly, without having to navigate through menus and dialogs. Now, we learn how an equivalent is coming for Microsoft's flagship Visual Studio IDE, invoked by the same familiar Ctrl+Shift+P keyboard shortcut.

  • .NET 9 Preview 3: 'I've Been Waiting 9 Years for This API!'

    Microsoft's third preview of .NET 9 sees a lot of minor tweaks and fixes with no earth-shaking new functionality, but little things can be important to individual developers.

  • Data Anomaly Detection Using a Neural Autoencoder with C#

    Dr. James McCaffrey of Microsoft Research tackles the process of examining a set of source data to find data items that are different in some way from the majority of the source items.

  • What's New for Python, Java in Visual Studio Code

    Microsoft announced March 2024 updates to its Python and Java extensions for Visual Studio Code, the open source-based, cross-platform code editor that has repeatedly been named the No. 1 tool in major development surveys.

Subscribe on YouTube