IndentedTextWriter Constructors
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.
Overloads
IndentedTextWriter(TextWriter) |
Initializes a new instance of the IndentedTextWriter class using the specified text writer and default tab string. Note that the writer passed to this constructor must use the CultureInfo specified by the Culture property. |
IndentedTextWriter(TextWriter, String) |
Initializes a new instance of the IndentedTextWriter class using the specified text writer and tab string. Note that the writer passed to this constructor must use the CultureInfo specified by the Culture property. |
IndentedTextWriter(TextWriter)
Initializes a new instance of the IndentedTextWriter class using the specified text writer and default tab string. Note that the writer passed to this constructor must use the CultureInfo specified by the Culture property.
public IndentedTextWriter (System.IO.TextWriter writer);
new System.Data.Entity.Migrations.Utilities.IndentedTextWriter : System.IO.TextWriter -> System.Data.Entity.Migrations.Utilities.IndentedTextWriter
Public Sub New (writer As TextWriter)
Parameters
- writer
- TextWriter
The TextWriter to use for output.
Applies to
IndentedTextWriter(TextWriter, String)
Initializes a new instance of the IndentedTextWriter class using the specified text writer and tab string. Note that the writer passed to this constructor must use the CultureInfo specified by the Culture property.
public IndentedTextWriter (System.IO.TextWriter writer, string tabString);
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1720:IdentifiersShouldNotContainTypeNames", MessageId="string")]
public IndentedTextWriter (System.IO.TextWriter writer, string tabString);
new System.Data.Entity.Migrations.Utilities.IndentedTextWriter : System.IO.TextWriter * string -> System.Data.Entity.Migrations.Utilities.IndentedTextWriter
Public Sub New (writer As TextWriter, tabString As String)
Parameters
- writer
- TextWriter
The TextWriter to use for output.
- tabString
- String
The tab string to use for indentation.
- Attributes
Applies to
Entity Framework