C# Class Kinect.Common.BindableTraceListener

Tracelistener bindable to view
Inheritance: System.Diagnostics.TraceListener, INotifyCollectionChanged
显示文件 Open project: atosorigin/Kinect

Public Methods

Method Description
Write ( string message ) : void

When overridden in a derived class, writes the specified message to the listener you create in the derived class.

WriteLine ( string message ) : void

When overridden in a derived class, writes a message to the listener you create in the derived class, followed by a line terminator.

Private Methods

Method Description
OnCollectionChanged ( Message message ) : void

Called when [collection changed].

WriteMessage ( Message message ) : void

Writes the message.

Method Details

Write() public method

When overridden in a derived class, writes the specified message to the listener you create in the derived class.
public Write ( string message ) : void
message string A message to write.
return void

WriteLine() public method

When overridden in a derived class, writes a message to the listener you create in the derived class, followed by a line terminator.
public WriteLine ( string message ) : void
message string A message to write.
return void