ToolTask.ReceiveStandardOutputData(Object, DataReceivedEventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Queues up the output from the stdout stream of the process executing the tool, and signals the availability of the data. The Process object executing the tool calls this method for every line of text that the tool writes to stdout.
protected:
void ReceiveStandardOutputData(System::Object ^ sender, System::Diagnostics::DataReceivedEventArgs ^ e);
protected void ReceiveStandardOutputData (object sender, System.Diagnostics.DataReceivedEventArgs e);
member this.ReceiveStandardOutputData : obj * System.Diagnostics.DataReceivedEventArgs -> unit
Protected Sub ReceiveStandardOutputData (sender As Object, e As DataReceivedEventArgs)
Parameters
- sender
- Object
Remarks
This method is used as a System.Diagnostics.DataReceivedEventHandler delegate.