C-DEngine 5.105

Logger..::..Output Property

Gets or sets the current output action used to output a log.

Namespace:  WebSocketSharp
Assembly:  C-DEngine (in C-DEngine.dll)

Syntax


public Action<LogData, string> Output { get; set; }
Public Property Output As Action(Of LogData, String)
	Get
	Set
public:
property Action<LogData^, String^>^ Output {
	Action<LogData^, String^>^ get ();
	void set (Action<LogData^, String^>^ value);
}

Field Value

An Action<LogData, string> delegate that references the method(s) used to output a log. A String parameter passed to this delegate is the value of the File property.

If the value to set is nullNothingnullptra null reference (Nothing in Visual Basic), the current output action is changed to the default output action.