C# Class Jurassic.Library.StandardConsoleOutput

Represents an implementation of the Firebug API using the standard console.
Inheritance: IFirebugConsoleOutput
Afficher le fichier Open project: paulbartrum/jurassic

Méthodes publiques

Méthode Description
Clear ( ) : void

Clears the console.

EndGroup ( ) : void

Ends the most recently started group.

Log ( FirebugConsoleMessageStyle style, object objects ) : void

Logs a message to the console.

StartGroup ( string title, bool initiallyCollapsed ) : void

Starts grouping messages together.

Method Details

Clear() public méthode

Clears the console.
public Clear ( ) : void
Résultat void

EndGroup() public méthode

Ends the most recently started group.
public EndGroup ( ) : void
Résultat void

Log() public méthode

Logs a message to the console.
public Log ( FirebugConsoleMessageStyle style, object objects ) : void
style FirebugConsoleMessageStyle A style which influences the icon and text color.
objects object The objects to output to the console. These can be strings or /// ObjectInstances.
Résultat void

StartGroup() public méthode

Starts grouping messages together.
public StartGroup ( string title, bool initiallyCollapsed ) : void
title string The title for the group.
initiallyCollapsed bool true if subsequent messages should be hidden by default.
Résultat void