HtmlTextWriter::WriteLine Method

 

Writes data to an HtmlTextWriter output stream, as specified by the overloaded parameters, followed by a line terminator string. All versions of this method write any pending tab spacing to the output stream.

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)

NameDescription
System_CAPS_pubmethodWriteLine()

Writes a line terminator string to the output stream.(Overrides TextWriter::WriteLine().)

System_CAPS_pubmethodWriteLine(Boolean)

Writes any pending tab spacing and the text representation of a Boolean value, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(Boolean).)

System_CAPS_pubmethodWriteLine(Char)

Writes any pending tab spacing and a Unicode character, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(Char).)

System_CAPS_pubmethodWriteLine(array<Char>^)

Writes any pending tab spacing and an array of Unicode characters, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(array<Char>^).)

System_CAPS_pubmethodWriteLine(array<Char>^, Int32, Int32)

Writes any pending tab spacing and a subarray of Unicode characters, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(array<Char>^, Int32, Int32).)

System_CAPS_pubmethodWriteLine(Decimal)

Writes the text representation of a decimal value followed by a line terminator to the text string or stream.(Inherited from TextWriter.)

System_CAPS_pubmethodWriteLine(Double)

Writes any pending tab spacing and the text representation of a double-precision floating-point number, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(Double).)

System_CAPS_pubmethodWriteLine(Int32)

Writes any pending tab spacing and the text representation of a 32-byte signed integer, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(Int32).)

System_CAPS_pubmethodWriteLine(Int64)

Writes any pending tab spacing and the text representation of a 64-byte signed integer, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(Int64).)

System_CAPS_pubmethodWriteLine(Object^)

Writes any pending tab spacing and the text representation of an object, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(Object^).)

System_CAPS_pubmethodWriteLine(Single)

Writes any pending tab spacing and the text representation of a single-precision floating-point number, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(Single).)

System_CAPS_pubmethodWriteLine(String^)

Writes any pending tab spacing and a text string, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(String^).)

System_CAPS_pubmethodWriteLine(String^, Object^)

Writes any pending tab spacing and a formatted string containing the text representation of an object, followed by a line terminator string, to the output stream. (Overrides TextWriter::WriteLine(String^, Object^).)

System_CAPS_pubmethodWriteLine(String^, Object^, Object^)

Writes any pending tab spacing and a formatted string that contains the text representation of two objects, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(String^, Object^, Object^).)

System_CAPS_pubmethodWriteLine(String^, Object^, Object^, Object^)

Writes out a formatted string and a new line, using the same semantics as Format.(Inherited from TextWriter.)

System_CAPS_pubmethodWriteLine(String^, array<Object^>^)

Writes any pending tab spacing and a formatted string that contains the text representation of an object array, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(String^, array<Object^>^).)

System_CAPS_pubmethodWriteLine(UInt32)

Writes any pending tab spacing and the text representation of a 4-byte unsigned integer, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(UInt32).)

System_CAPS_pubmethodWriteLine(UInt64)

Writes the text representation of an 8-byte unsigned integer followed by a line terminator to the text string or stream.(Inherited from TextWriter.)

The default line terminator string is a carriage return followed by a line feed ("\r\n"). The WriteLine base method is used to write the value parameter.

Return to top
Show: