FsMake


IWriterExtensions Module

IWriter extension methods.

Type extensions

Type extension Description

this.Write

Full Usage: this.Write

Parameters:
    message : Message - The message to be written.

Writes a Message to the console.

Extended Type: IWriter

message : Message

The message to be written.

this.WriteLine

Full Usage: this.WriteLine

Parameters:
    level : Level - The level of the newline.

Writes a newline to the console.

If the level is not high enough for the Verbosity, the line will not be written.

Extended Type: IWriter

level : Level

The level of the newline.

this.WriteLine

Full Usage: this.WriteLine

Parameters:
    message : Message - The message to write.

Writes a Message to the console, with a newline at the end.

Extended Type: IWriter

message : Message

The message to write.

this.WriteLines

Full Usage: this.WriteLines

Parameters:
    messages : Message list - The messages to write.

Writes a Messagelist to the console, with newlines at the end of each.

Extended Type: IWriter

messages : Message list

The messages to write.