C# 클래스 Jurassic.Library.StandardConsoleOutput

Represents an implementation of the Firebug API using the standard console.
상속: IFirebugConsoleOutput
파일 보기 프로젝트 열기: paulbartrum/jurassic

공개 메소드들

메소드 설명
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