WriteHandler Delegate

Definition

Represents the method that writes strings to a certain location, such as the console window or a window in an integrated development environment.

public delegate void WriteHandler(System::String ^ message);
public delegate void WriteHandler(string message);
type WriteHandler = delegate of string -> unit
Public Delegate Sub WriteHandler(message As String)

Parameters

message
String

The string to write.

Applies to