XhtmlMobileTextWriter.WriteLine Method

Definition

Writes a line terminator string to the output stream if SuppressNewLine is false. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

Overloads

WriteLine(String, Object, Object)

Writes any pending tab spacing and a formatted string that contains the text representation of two objects, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine(Char[], Int32, Int32)

Writes any pending tab spacing and a subarray of Unicode characters, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine(String, Object[])

Writes any pending tab spacing and a formatted string that contains the text representation of an object array, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine(String, Object)

Writes any pending tab spacing and a formatted string containing the text representation of an object, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine(String)

Writes any pending tab spacing and a text string, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine(Single)

Writes any pending tab spacing and the text representation of a single-precision floating-point number, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine(Object)

Writes any pending tab spacing and the text representation of an object, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine(Char[])

Writes any pending tab spacing and an array of Unicode characters, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine(Int32)

Writes any pending tab spacing and the text representation of a 32-byte signed integer, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine(Double)

Writes any pending tab spacing and the text representation of a double-precision floating-point number, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine(Char)

Writes any pending tab spacing and a Unicode character, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine(Boolean)

Writes any pending tab spacing and the text representation of a Boolean value, then if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine()

Writes a line terminator string to the output stream if SuppressNewLine is false. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine(Int64)

Writes any pending tab spacing and the text representation of a 64-byte signed integer, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

WriteLine(String, Object, Object)

Writes any pending tab spacing and a formatted string that contains the text representation of two objects, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine(string format, object arg0, object arg1);

Parameters

format
String

A string containing zero or more format items.

arg0
Object

The object to write to the output stream in place of the first format placeholder.

arg1
Object

The object to write to the output stream in place of the second format placeholder.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine(Char[], Int32, Int32)

Writes any pending tab spacing and a subarray of Unicode characters, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine(char[] buffer, int index, int count);

Parameters

buffer
Char[]

An array containing the character data to write to the output stream.

index
Int32

The location in the array to start the output.

count
Int32

The number of characters to write to the output stream.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine(String, Object[])

Writes any pending tab spacing and a formatted string that contains the text representation of an object array, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine(string format, object[] arg);
C#
public override void WriteLine(string format, params object[] arg);

Parameters

format
String

A string containing zero or more format items.

arg
Object[]

An array containing zero or more objects to format.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine(String, Object)

Writes any pending tab spacing and a formatted string containing the text representation of an object, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine(string format, object arg);

Parameters

format
String

A string containing zero or more format items.

arg
Object

The object to format.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine(String)

Writes any pending tab spacing and a text string, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine(string s);

Parameters

s
String

The string to write to the output stream.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine(Single)

Writes any pending tab spacing and the text representation of a single-precision floating-point number, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine(float v);

Parameters

v
Single

The floating-point number to write to the output stream.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine(Object)

Writes any pending tab spacing and the text representation of an object, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine(object v);

Parameters

v
Object

The object to write to the output stream.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine(Char[])

Writes any pending tab spacing and an array of Unicode characters, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine(char[] v);

Parameters

v
Char[]

The array of characters to writer to the output stream.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine(Int32)

Writes any pending tab spacing and the text representation of a 32-byte signed integer, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine(int v);

Parameters

v
Int32

The integer to write to the output stream.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine(Double)

Writes any pending tab spacing and the text representation of a double-precision floating-point number, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine(double v);

Parameters

v
Double

The floating-point number to write to the output stream.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine(Char)

Writes any pending tab spacing and a Unicode character, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine(char v);

Parameters

v
Char

The character to write to the output stream.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine(Boolean)

Writes any pending tab spacing and the text representation of a Boolean value, then if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine(bool v);

Parameters

v
Boolean

The Boolean value to write to the output stream.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine()

Writes a line terminator string to the output stream if SuppressNewLine is false. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine();

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine(Int64)

Writes any pending tab spacing and the text representation of a 64-byte signed integer, and if SuppressNewLine is false, writes a line terminator string to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

C#
public override void WriteLine(long v);

Parameters

v
Int64

The integer to write to the output stream.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1