Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Represents a writer that can write a sequential series of characters. This class is abstract.
Inheritance Hierarchy
System. . :: . .Object
System. . :: . .MarshalByRefObject
System.IO..::..TextWriter
System.IO. . :: . .StreamWriter
Namespace: System.IO
Assembly: System.IO (in System.IO.dll)
Syntax
'Declaration
<SerializableAttribute> _
Public MustInherit Class TextWriter _
Inherits MarshalByRefObject _
Implements IDisposable
[SerializableAttribute]
public abstract class TextWriter : MarshalByRefObject,
IDisposable
[SerializableAttribute]
public ref class TextWriter abstract : public MarshalByRefObject,
IDisposable
[<AbstractClass>]
[<SerializableAttribute>]
type TextWriter =
class
inherit MarshalByRefObject
interface IDisposable
end
public abstract class TextWriter extends MarshalByRefObject implements IDisposable
The TextWriter type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
![]() |
TextWriter | Initializes a new instance of the TextWriter class. |
Top
Properties
| Name | Description | |
|---|---|---|
![]() |
Encoding | When overridden in a derived class, returns the character encoding in which the output is written. |
![]() |
NewLine | Gets or sets the line terminator string used by the current TextWriter. |
Top
Methods
| Name | Description | |
|---|---|---|
![]() |
Close | Closes the current writer and releases any system resources associated with the writer. |
![]() |
Dispose() () () () | Releases all resources used by the TextWriter object. |
![]() |
Dispose(Boolean) | Releases the unmanaged resources used by the TextWriter and optionally releases the managed resources. |
![]() |
Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() |
Flush | Clears all buffers for the current writer and causes any buffered data to be written to the underlying device. |
![]() |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() |
GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() |
Write(Boolean) | Writes the text representation of a Boolean value to the text string or stream. |
![]() |
Write(Char) | Writes a character to the text string or stream. |
![]() |
Write(array<Char> [] () [] []) | Writes a character array to the text string or stream. |
![]() |
Write(Double) | Writes the text representation of an 8-byte floating-point value to the text string or stream. |
![]() |
Write(Int32) | Writes the text representation of a 4-byte signed integer to the text string or stream. |
![]() |
Write(Int64) | Writes the text representation of an 8-byte signed integer to the text string or stream. |
![]() |
Write(Object) | Writes the text representation of an object to the text string or stream by calling the ToString method on that object. |
![]() |
Write(Single) | Writes the text representation of a 4-byte floating-point value to the text string or stream. |
![]() |
Write(String) | Writes a string to the text string or stream. |
![]() |
Write(UInt32) | Writes the text representation of a 4-byte unsigned integer to the text string or stream. |
![]() |
Write(UInt64) | Writes the text representation of an 8-byte unsigned integer to the text string or stream. |
![]() |
Write(array<Char> [] () [] [], Int32, Int32) | Writes a subarray of characters to the text string or stream. |
![]() |
WriteLine() () () () | Writes a line terminator to the text string or stream. |
![]() |
WriteLine(Boolean) | Writes the text representation of a Boolean value followed by a line terminator to the text string or stream. |
![]() |
WriteLine(Char) | Writes a character followed by a line terminator to the text string or stream. |
![]() |
WriteLine(array<Char> [] () [] []) | Writes an array of characters followed by a line terminator to the text string or stream. |
![]() |
WriteLine(Double) | Writes the text representation of a 8-byte floating-point value followed by a line terminator to the text string or stream. |
![]() |
WriteLine(Int32) | Writes the text representation of a 4-byte signed integer followed by a line terminator to the text string or stream. |
![]() |
WriteLine(Int64) | Writes the text representation of an 8-byte signed integer followed by a line terminator to the text string or stream. |
![]() |
WriteLine(Object) | Writes the text representation of an object by calling the ToString method on that object, followed by a line terminator to the text string or stream. |
![]() |
WriteLine(Single) | Writes the text representation of a 4-byte floating-point value followed by a line terminator to the text string or stream. |
![]() |
WriteLine(String) | Writes a string followed by a line terminator to the text string or stream. |
![]() |
WriteLine(UInt32) | Writes the text representation of a 4-byte unsigned integer followed by a line terminator to the text string or stream. |
![]() |
WriteLine(UInt64) | Writes the text representation of an 8-byte unsigned integer followed by a line terminator to the text string or stream. |
![]() |
WriteLine(array<Char> [] () [] [], Int32, Int32) | Writes a subarray of characters followed by a line terminator to the text string or stream. |
Top
Fields
| Name | Description | |
|---|---|---|
![]() |
CoreNewLine | Stores the newline characters used for this TextWriter. |
Top
Remarks
TextWriter is the abstract base class of StreamWriter and StringWriter, which write characters to streams and strings, respectively. Create an instance of TextWriter to write an object to a string, write strings to a file, or to serialize XML. You can also use an instance of TextWriter to write text to a custom backing store using the same APIs you would use for a string or a stream, or to add support for text formatting.
All the Write methods of TextWriter having primitive data types as parameters write out the values as strings.
Notes to Inheritors
A derived class must minimally implement the TextWriter..::..Write(Char) method to make a useful instance of TextWriter.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
.gif)
.gif)
.gif)
.gif)