CSharpTest.Net
ProcessOutputEventHandler Delegate
See Also  Example Send Feedback Download Help File
CSharpTest.Net.Library Assembly > CSharpTest.Net.Processes Namespace : ProcessOutputEventHandler Delegate

sender
args

Glossary Item Box

A delegate that handles the write to either std::out or std::in for a process

Syntax

Visual Basic (Declaration) 
Public Delegate Sub ProcessOutputEventHandler( _
   ByVal sender As Object, _
   ByVal args As ProcessOutputEventArgs _
) 
C# 
public delegate void ProcessOutputEventHandler( 
   object sender,
   ProcessOutputEventArgs args
)

Parameters

sender
args

Example

Library/Library.Test/TestScriptRunner.cs

C#Copy Code
using (ScriptRunner runner = new ScriptRunner(ScriptEngine.Language.JScript, @"WScript.StdOut.Write(WScript.StdIn.ReadAll());"))
{
    StringWriter sw = new StringWriter();
    runner.OutputReceived += delegate(object o, ProcessOutputEventArgs e) { sw.WriteLine(e.Data); };
    runner.Start();
    runner.StandardInput.WriteLine("From JScript");
    runner.WaitForExit();
    Assert.AreEqual(0, runner.ExitCode);
    Assert.AreEqual("From JScript", sw.ToString().Trim());
}
VB.NETCopy Code
Using runner As New ScriptRunner(ScriptEngine.Language.JScript, "WScript.StdOut.Write(WScript.StdIn.ReadAll());")
    Dim sw As New StringWriter()
    runner.OutputReceived += Function(o As Object, e As ProcessOutputEventArgs) Do
        sw.WriteLine(e.Data)
    End Function
    runner.Start()
    runner.StandardInput.WriteLine("From JScript")
    runner.WaitForExit()
    Assert.AreEqual(0, runner.ExitCode)
    Assert.AreEqual("From JScript", sw.ToString().Trim())
End Using

Requirements

Target Platforms: Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7

See Also

Generated with Document! X 2011 by Innovasys