XhtmlMobileTextWriter.WriteLine Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 |
WriteLine(Char[], Int32, Int32) |
Writes any pending tab spacing and a subarray of Unicode characters, and if SuppressNewLine is |
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 |
WriteLine(String, Object) |
Writes any pending tab spacing and a formatted string containing the text representation of an object, and if SuppressNewLine is |
WriteLine(String) |
Writes any pending tab spacing and a text string, and if SuppressNewLine is |
WriteLine(Single) |
Writes any pending tab spacing and the text representation of a single-precision floating-point number, and if SuppressNewLine is |
WriteLine(Object) |
Writes any pending tab spacing and the text representation of an object, and if SuppressNewLine is |
WriteLine(Char[]) |
Writes any pending tab spacing and an array of Unicode characters, and if SuppressNewLine is |
WriteLine(Int32) |
Writes any pending tab spacing and the text representation of a 32-byte signed |
WriteLine(Double) |
Writes any pending tab spacing and the text representation of a double-precision floating-point number, and if SuppressNewLine is |
WriteLine(Char) |
Writes any pending tab spacing and a Unicode character, and if SuppressNewLine is |
WriteLine(Boolean) |
Writes any pending tab spacing and the text representation of a |
WriteLine() |
Writes a line terminator string to the output stream if SuppressNewLine is |
WriteLine(Int64) |
Writes any pending tab spacing and the text representation of a 64-byte signed |
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.
public:
override void WriteLine(System::String ^ format, System::Object ^ arg0, System::Object ^ arg1);
public override void WriteLine (string format, object arg0, object arg1);
override this.WriteLine : string * obj * obj -> unit
Public Overrides Sub WriteLine (format As String, arg0 As Object, arg1 As Object)
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
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior
Applies to
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.
public:
override void WriteLine(cli::array <char> ^ buffer, int index, int count);
public override void WriteLine (char[] buffer, int index, int count);
override this.WriteLine : char[] * int * int -> unit
Public Overrides Sub WriteLine (buffer As Char(), index As Integer, count As Integer)
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
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior
Applies to
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.
public:
override void WriteLine(System::String ^ format, cli::array <System::Object ^> ^ arg);
public:
override void WriteLine(System::String ^ format, ... cli::array <System::Object ^> ^ arg);
public override void WriteLine (string format, object[] arg);
public override void WriteLine (string format, params object[] arg);
override this.WriteLine : string * obj[] -> unit
Public Overrides Sub WriteLine (format As String, arg As Object())
Public Overrides Sub WriteLine (format As String, ParamArray arg As Object())
Parameters
- format
- String
A string containing zero or more format items.
- arg
- Object[]
An array containing zero or more objects to format.
See also
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior
Applies to
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.
public:
override void WriteLine(System::String ^ format, System::Object ^ arg);
public override void WriteLine (string format, object arg);
override this.WriteLine : string * obj -> unit
Public Overrides Sub WriteLine (format As String, arg As Object)
Parameters
- format
- String
A string containing zero or more format items.
- arg
- Object
The object to format.
See also
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior
Applies to
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.
public:
override void WriteLine(System::String ^ s);
public override void WriteLine (string s);
override this.WriteLine : string -> unit
Public Overrides Sub WriteLine (s As String)
Parameters
- s
- String
The string to write to the output stream.
See also
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior
Applies to
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.
public:
override void WriteLine(float v);
public override void WriteLine (float v);
override this.WriteLine : single -> unit
Public Overrides Sub WriteLine (v As Single)
Parameters
- v
- Single
The floating-point number to write to the output stream.
See also
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior
Applies to
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.
public:
override void WriteLine(System::Object ^ v);
public override void WriteLine (object v);
override this.WriteLine : obj -> unit
Public Overrides Sub WriteLine (v As Object)
Parameters
- v
- Object
The object to write to the output stream.
See also
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior
Applies to
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.
public:
override void WriteLine(cli::array <char> ^ v);
public override void WriteLine (char[] v);
override this.WriteLine : char[] -> unit
Public Overrides Sub WriteLine (v As Char())
Parameters
- v
- Char[]
The array of characters to writer to the output stream.
See also
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior
Applies to
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.
public:
override void WriteLine(int v);
public override void WriteLine (int v);
override this.WriteLine : int -> unit
Public Overrides Sub WriteLine (v As Integer)
Parameters
- v
- Int32
The integer to write to the output stream.
See also
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior
Applies to
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.
public:
override void WriteLine(double v);
public override void WriteLine (double v);
override this.WriteLine : double -> unit
Public Overrides Sub WriteLine (v As Double)
Parameters
- v
- Double
The floating-point number to write to the output stream.
See also
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior
Applies to
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.
public:
override void WriteLine(char v);
public override void WriteLine (char v);
override this.WriteLine : char -> unit
Public Overrides Sub WriteLine (v As Char)
Parameters
- v
- Char
The character to write to the output stream.
See also
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior
Applies to
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.
public:
override void WriteLine(bool v);
public override void WriteLine (bool v);
override this.WriteLine : bool -> unit
Public Overrides Sub WriteLine (v As Boolean)
Parameters
- v
- Boolean
The Boolean value to write to the output stream.
See also
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior
Applies to
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.
public:
override void WriteLine();
public override void WriteLine ();
override this.WriteLine : unit -> unit
Public Overrides Sub WriteLine ()
See also
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior
Applies to
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.
public:
override void WriteLine(long v);
public override void WriteLine (long v);
override this.WriteLine : int64 -> unit
Public Overrides Sub WriteLine (v As Long)
Parameters
- v
- Int64
The integer to write to the output stream.
See also
- SuppressNewLine
- UseDivsForBreaks
- ASP.NET and XHTML Compliance
- Architectural Overview of Adaptive Control Behavior