C# Класс Jurassic.Library.StandardConsoleOutput

Represents an implementation of the Firebug API using the standard console.
Наследование: IFirebugConsoleOutput
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

Clear() публичный Метод

Clears the console.
public Clear ( ) : void
Результат void

EndGroup() публичный Метод

Ends the most recently started group.
public EndGroup ( ) : void
Результат void

Log() публичный Метод

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.
Результат void

StartGroup() публичный Метод

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.
Результат void