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.
Assembly: System.Web (in System.Web.dll)
| Name | Description | |
|---|---|---|
![]() | WriteLine() | Writes a line terminator string to the output stream.(Overrides TextWriter::WriteLine().) |
![]() | WriteLine(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).) |
![]() | WriteLine(Char) | Writes any pending tab spacing and a Unicode character, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(Char).) |
![]() | WriteLine(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>^).) |
![]() | WriteLine(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).) |
![]() | WriteLine(Decimal) | Writes the text representation of a decimal value followed by a line terminator to the text string or stream.(Inherited from TextWriter.) |
![]() | WriteLine(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).) |
![]() | WriteLine(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).) |
![]() | WriteLine(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).) |
![]() | WriteLine(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^).) |
![]() | WriteLine(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).) |
![]() | WriteLine(String^) | Writes any pending tab spacing and a text string, followed by a line terminator string, to the output stream.(Overrides TextWriter::WriteLine(String^).) |
![]() | WriteLine(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^).) |
![]() | WriteLine(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^).) |
![]() | WriteLine(String^, Object^, Object^, Object^) | Writes out a formatted string and a new line, using the same semantics as Format.(Inherited from TextWriter.) |
![]() | WriteLine(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^>^).) |
![]() | WriteLine(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).) |
![]() | WriteLine(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.
