KozzerTools.ConsoleRedirect 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package KozzerTools.ConsoleRedirect --version 1.0.2                
NuGet\Install-Package KozzerTools.ConsoleRedirect -Version 1.0.2                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="KozzerTools.ConsoleRedirect" Version="1.0.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add KozzerTools.ConsoleRedirect --version 1.0.2                
#r "nuget: KozzerTools.ConsoleRedirect, 1.0.2"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install KozzerTools.ConsoleRedirect as a Cake Addin
#addin nuget:?package=KozzerTools.ConsoleRedirect&version=1.0.2

// Install KozzerTools.ConsoleRedirect as a Cake Tool
#tool nuget:?package=KozzerTools.ConsoleRedirect&version=1.0.2                

ConsoleRedirect

ConsoleRedirect intercepts Console.Write() and Console.WriteLine() calls and routes the text to one or more EventHandlers.

Classes

ConsoleRedirect
Create an instance anywhere in your application, and all Console text will be re-routed to 
the Event Handler passed into the Constructor. Also contains a static method to serialize an 
object to Json, then passing the resulting string to Console.WriteLine().
ConsoleRedirectEventArgs
Contains the Console text in the Value property.  If receiving an object that's been 
serialized to Json, use the GetValueAs<T>() method to retrieve as an instance of T.

Usage

  • All you need to do is instantiate it and make System.Console.WriteLine() calls. The constructor requires an event handler of type EventHandler<ConsoleRedirectEventArgs> with the following signature (name of method can be anything, also can be public or private):

    void HandlerMethod(object sender, ConsoleRedirectEventArgs e)
    
  • Inside your event handler, using the ConsoleRedirectEventArgs class, you'll have access to the string sent from the Console.Write() or Console.WriteLine() call. The event args expose the string value, and the class also has a GetValueAs<T>() method that uses Json deserialization to re-build a serialized object passed through the console:

    private void redirectEventHandler(object sender, ConsoleRedirectEventArgs e)
    {
        DateTime theDateTimeObject = e.GetValueAs<DateTime>();
        showNotification("From the Console", theDateTimeObject.ToString("dddd, MMMM d, yyyy"));   // Saturday, May 21, 2022
    }
    
  • ConsoleRedirect class has a static method WriteObject<T>(), which serializes an object into Json and passes the string to System.Console.WriteLine() to be retrieved by your event handler as described above:

    ConsoleRedirect.WriteObject<WidgetManifest>(manifest);   // Serializes manifest to Json, then calls Console.WriteLine()
    
  • You can add more event handlers by calling the ConsoleRedirect.AddEventHandler() method, which accepts an action with the same method signature as what the constructor accepts:

    var consoleRedirect = new ConsoleRedirect(redirectEventHandler);
    consoleRedirect.AddRedirectHandler(anotherEventHandler);
    consoleRedirect.AddRedirectHandler(theMoreTheMerrierEventHandler);
    
  • To restore normal System.Console functionality, keep a reference to the instance and call Dispose().

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.5 431 5/24/2022
1.0.4 371 5/21/2022
1.0.3 376 5/21/2022
1.0.2 365 5/21/2022
1.0.1 376 5/21/2022
1.0.0 372 5/21/2022