Write a text line to the user debug stream

Namespace: ScopeRuntime.Diagnostics
Assembly: ScopeRuntime (in ScopeRuntime.exe) Version: 1.0.0.0 (10.2.2.0)

Syntax

C#
public static void WriteLine(
	string groupId,
	string line,
	DebugStreamContentFilter filter
)
Visual Basic
Public Shared Sub WriteLine ( _
	groupId As String, _
	line As String, _
	filter As DebugStreamContentFilter _
)
Visual C++
public:
static void WriteLine(
	String^ groupId, 
	String^ line, 
	DebugStreamContentFilter filter
)

Parameters

groupId
Type: String
Nullable. Specified by customer. Group ID can be used to differentiate debug data generated by different instances of operators.
line
Type: String
The line to write
filter
Type: ScopeRuntime.Diagnostics..::..DebugStreamContentFilter
whether let system to add timestamp and current thread id to the line

Return Value

See Also