Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4615308
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T01:49:18+00:00 2026-05-22T01:49:18+00:00

I want to start a subprocess and watch it’s redirected output. That not a

  • 0

I want to start a subprocess and watch it’s redirected output. That not
a problem for me in C#, but I try to understand RX, so the game begins …
I have a static extension method for process, which looks like this:

    public static IObservable<IEvent<DataReceivedEventArgs>> GetOutput(this Process that)
    {
        return Observable.FromEvent<DataReceivedEventArgs>(that, "OutputDataReceived");
    }

I create an observable and subscribe to it like this:

    Process p = ........
    var outObs = p.GetOutput();
    var outSub = outObs.Subscribe(data => Console.WriteLine(data));

This is not completely wrong, but I am getting:

System.Collections.Generic.Event`1[System.Diagnostics.DataReceivedEventArgs]

while I am expecting to get strings 🙁

So, I think, my extensionmethod returns the wrong type.
It would be really good, if someone could explain me, what’s
wong with my extension methods signature.

Thanks a lot,
++mabra

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T01:49:18+00:00Added an answer on May 22, 2026 at 1:49 am

    So, I think, my extensionmethod returns the wrong type

    That’s exactly it.

    IEvent wraps both the sender and the EventArgs parameters of a tradition Event delegate. So you need to modify your code to look something like

    public static IObservable<string> GetOutput(this Process that)
    {
        return Observable.FromEvent<DataReceivedEventArgs>(that, "OutputDataReceived")
                         .Select(ep => ep.EventArgs.Data);
    }
    

    If you’re using the latest Rx, then the code is a bit different

    public static IObservable<string> GetOutput(this Process that)
    {
           return Observable.FromEventPattern<DataReceivedEventArgs>(that, "OutputDataReceived")
                            .Select(ep => ep.EventArgs.Data);
    }
    

    the key here is to Select the EventArgs from the EventPattern/IEvent, and then grab the Data

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to start using Python for small projects but the fact that a
I want to start using Cygwin, but I am not pleased with the font
I want to (need to) start a sub-process from a perl script that checks
I want to start working with TDD but I don't know really where to
I want to start using .NET 3.5 features in an app that is currently
I want to start looking at WCF but to be honest before I do
I want to do a popen() / python's subprocess.communicate from Haskell - start a
I want to start creating an application that has a menu on the left(some
I want to start a child process and read its stderr, but so far,
I want to set start margin only for the first line of TextView (Not

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.