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.
Provides a standard System.IO mechanism for writing to a Visual Studio text buffer.
This API is not CLS-compliant.
Inheritance Hierarchy
Object
  MarshalByRefObject
    TextWriter
      Microsoft.VisualStudio.Shell.Design.Serialization.DocDataTextWriter
Namespace:  Microsoft.VisualStudio.Shell.Design.Serialization
Assembly:  Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)
Syntax
'Declaration
<CLSCompliantAttribute(False)> _
Public Class DocDataTextWriter _
    Inherits TextWriter _
    Implements IServiceProvider
[CLSCompliantAttribute(false)]
public class DocDataTextWriter : TextWriter, 
    IServiceProvider
[CLSCompliantAttribute(false)]
public ref class DocDataTextWriter : public TextWriter, 
    IServiceProvider
[<CLSCompliantAttribute(false)>]
type DocDataTextWriter =  
    class 
        inherit TextWriter 
        interface IServiceProvider 
    end
public class DocDataTextWriter extends TextWriter implements IServiceProvider
The DocDataTextWriter type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| .gif) | DocDataTextWriter(DocData) | Initializes a new instance of DocDataTextWriter for the given doc data. | 
| .gif) | DocDataTextWriter(DocData, Boolean) | Initializes a new instance of DocDataTextWriter for the specified doc data, and determines whether or not to dispose the doc data object when this instance is closed or disposed. | 
Top
Properties
| Name | Description | |
|---|---|---|
| .gif) | DocData | Gets the doc data object. | 
| .gif) | Encoding | Gets the encoding of this text writer. (Overrides TextWriter.Encoding.) | 
| .gif) | FormatProvider | Gets an object that controls formatting. (Inherited from TextWriter.) | 
| .gif) | NewLine | Gets or sets the line terminator string used by the current TextWriter. (Inherited from TextWriter.) | 
Top
Methods
| Name | Description | |
|---|---|---|
| .gif) | Close | Closes the current writer and releases any system resources associated with the writer. (Inherited from TextWriter.) | 
| .gif) | CreateObjRef | Security Critical. Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (Inherited from MarshalByRefObject.) | 
| .gif) | Dispose | Releases all resources used by the TextWriter object. (Inherited from TextWriter.) | 
| .gif) | Dispose(Boolean) | Disposes the object and its resources. (Overrides TextWriter.Dispose(Boolean).) | 
| .gif) | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | 
| .gif) | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | 
| .gif) | Flush | Replaces the contents of the text stream with the contents of the string builder. (Overrides TextWriter.Flush.) | 
| .gif) | GetHashCode | Serves as the default hash function. (Inherited from Object.) | 
| .gif) | GetLifetimeService | Security Critical. Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited from MarshalByRefObject.) | 
| .gif) | GetType | Gets the Type of the current instance. (Inherited from Object.) | 
| .gif) | InitializeLifetimeService | Security Critical. Obtains a lifetime service object to control the lifetime policy for this instance. (Inherited from MarshalByRefObject.) | 
| .gif) | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | 
| .gif) | MemberwiseClone(Boolean) | Creates a shallow copy of the current MarshalByRefObject object. (Inherited from MarshalByRefObject.) | 
| .gif) | ToString | Returns a string that represents the current object. (Inherited from Object.) | 
| .gif) | Write(Char) | Writes a character array to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | Write(Boolean) | Writes the text representation of a Boolean value to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | Write(Int32) | Writes the text representation of a 4-byte signed integer to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | Write(UInt32) | Writes the text representation of a 4-byte unsigned integer to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | Write(Int64) | Writes the text representation of an 8-byte signed integer to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | Write(UInt64) | Writes the text representation of an 8-byte unsigned integer to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | Write(Single) | Writes the text representation of a 4-byte floating-point value to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | Write(Double) | Writes the text representation of an 8-byte floating-point value to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | Write(Decimal) | Writes the text representation of a decimal value to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | Write(Object) | Writes the text representation of an object to the text string or stream by calling the ToString method on that object. (Inherited from TextWriter.) | 
| .gif) | Write(Char) | Appends a char to the underlying StringBuilder. (Overrides TextWriter.Write(Char).) | 
| .gif) | Write(String) | Appends a string to the underlying StringBuilder. (Overrides TextWriter.Write(String).) | 
| .gif) | Write(String, Object) | Writes a formatted string to the text string or stream, using the same semantics as the String.Format(String, Object) method. (Inherited from TextWriter.) | 
| .gif) | Write(String, Object) | Writes a formatted string to the text string or stream, using the same semantics as the String.Format(String, Object) method. (Inherited from TextWriter.) | 
| .gif) | Write(Char, Int32, Int32) | Writes a subarray of characters to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | Write(String, Object, Object) | Writes a formatted string to the text string or stream, using the same semantics as the String.Format(String, Object, Object) method. (Inherited from TextWriter.) | 
| .gif) | Write(String, Object, Object, Object) | Writes a formatted string to the text string or stream, using the same semantics as the String.Format(String, Object, Object, Object) method. (Inherited from TextWriter.) | 
| .gif) | WriteLine | Writes a line terminator to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | WriteLine(Char) | Writes a character followed by a line terminator to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | WriteLine(Char) | Writes an array of characters followed by a line terminator to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | WriteLine(Boolean) | Writes the text representation of a Boolean value followed by a line terminator to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | WriteLine(Int32) | Writes the text representation of a 4-byte signed integer followed by a line terminator to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | WriteLine(UInt32) | Writes the text representation of a 4-byte unsigned integer followed by a line terminator to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | WriteLine(Int64) | Writes the text representation of an 8-byte signed integer followed by a line terminator to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | 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.) | 
| .gif) | WriteLine(Single) | Writes the text representation of a 4-byte floating-point value followed by a line terminator to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | WriteLine(Double) | Writes the text representation of a 8-byte floating-point value followed by a line terminator to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | WriteLine(Decimal) | Writes the text representation of a decimal value followed by a line terminator to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | WriteLine(String) | Writes a string followed by a line terminator to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | 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. (Inherited from TextWriter.) | 
| .gif) | WriteLine(String, Object) | Writes a formatted string and a new line to the text string or stream, using the same semantics as the String.Format(String, Object) method. (Inherited from TextWriter.) | 
| .gif) | WriteLine(String, Object) | Writes out a formatted string and a new line, using the same semantics as Format. (Inherited from TextWriter.) | 
| .gif) | WriteLine(Char, Int32, Int32) | Writes a subarray of characters followed by a line terminator to the text string or stream. (Inherited from TextWriter.) | 
| .gif) | WriteLine(String, Object, Object) | Writes a formatted string and a new line to the text string or stream, using the same semantics as the String.Format(String, Object, Object) method. (Inherited from TextWriter.) | 
| .gif) | WriteLine(String, Object, Object, Object) | Writes out a formatted string and a new line, using the same semantics as Format. (Inherited from TextWriter.) | 
Top
Fields
| Name | Description | |
|---|---|---|
| .gif) | CoreNewLine | Stores the newline characters used for this TextWriter. (Inherited from TextWriter.) | 
Top
Explicit Interface Implementations
| Name | Description | |
|---|---|---|
| .gif) .gif) | IServiceProvider.GetService | Gets the service of the specified type. | 
Top
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.