InternetUnicodeHTMLCSSScalable Vector Graphics (SVG)Extensible Markup Language (xml) ASP.Net TOCASP.NetMiscellaneous FeatureASP.NET ScriptingASP.NET Run-time Object Stream, BufferedStreamFileStream, MemoryStream StreamReader, StreamWriter Draft for Information Only
ContentStream Writer Constructors
Stream Writer ConstructorsDefinition
Initializes a new instance of the StreamWriter class. Overloads
StreamWriter(Stream)Initializes a new instance of the StreamWriter class for the specified stream by using UTF-8 encoding and the default buffer size.
Parameters
The stream to write to. Exceptions
ExamplesThe following code example demonstrates this constructor.
Remarks
This constructor creates a StreamWriter with UTF-8 encoding without a Byte-Order Mark (BOM), so its GetPreamble method returns an empty byte array. The default UTF-8 encoding for this constructor throws an exception on invalid bytes. This behavior is different from the behavior provided by the encoding object in the Encoding.UTF8 property. To specify whether an exception is thrown on invalid bytes, use a constructor that accepts an encoding object as a parameter, such as StreamWriter.
The BaseStream property is initialized using the The StreamWriter object calls Dispose() on the provided Stream object when StreamWriter.Dispose is called. Caution When you compile a set of characters with a particular cultural setting and retrieve those same characters with a different cultural setting, the characters might not be interpretable and could cause an exception to be thrown. For a list of common I/O tasks, see Common I/O Tasks. See alsoApplies toStreamWriter(String)Initializes a new instance of the StreamWriter class for the specified file by using the default encoding and buffer size.
Parameters
The complete file path to write to. ExceptionsAccess is denied.
-or-
The specified path is invalid (for example, it is on an unmapped drive). The specified path, file name, or both exceed the system-defined maximum length.
The caller does not have the required permission. ExamplesThe following code example demonstrates this constructor.
RemarksThis constructor creates a StreamWriter with UTF-8 encoding without a Byte-Order Mark (BOM), so its GetPreamble method returns an empty byte array. The default UTF-8 encoding for this constructor throws an exception on invalid bytes. This behavior is different from the behavior provided by the encoding object in the Encoding.UTF8 property. To specify a BOM and determine whether an exception is thrown on invalid bytes, use a constructor that accepts an encoding object as a parameter, such as StreamWriter(String, Boolean, Encoding).
The
The Caution When you compile a set of characters with a particular cultural setting and retrieve those same characters with a different cultural setting, the characters might not be interpretable and could cause an exception to be thrown. For a list of common I/O tasks, see Common I/O Tasks. See alsoApplies toStreamWriter(Stream, Encoding)Initializes a new instance of the StreamWriter class for the specified stream by using the specified encoding and the default buffer size.
Parameters
The stream to write to.
The character encoding to use. Exceptions
ExamplesThe following example demonstrates this constructor.
RemarksThis constructor initializes the Encoding property using the encoding parameter, and the BaseStream property using the stream parameter. The position of the stream is not reset. For additional information, see Encoding. The StreamWriter object calls Dispose() on the provided Stream object when StreamWriter.Dispose is called. Caution When you compile a set of characters with a particular cultural setting and retrieve those same characters with a different cultural setting, the characters might not be interpretable, and could cause an exception to be thrown. For a list of common I/O tasks, see Common I/O Tasks. See alsoApplies toStreamWriter(String, Boolean)Initializes a new instance of the StreamWriter class for the specified file by using the default encoding and buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file.
Parameters
The complete file path to write to.
ExceptionsAccess is denied.
-or-
The specified path is invalid (for example, it is on an unmapped drive).
The specified path, file name, or both exceed the system-defined maximum length. The caller does not have the required permission. ExamplesThe following code example demonstrates this constructor.
RemarksThis constructor creates a StreamWriter with UTF-8 encoding without a Byte-Order Mark (BOM), so its GetPreamble method returns an empty byte array. The default UTF-8 encoding for this constructor throws an exception on invalid bytes. This behavior is different from the behavior provided by the encoding object in the Encoding.UTF8 property. To specify a BOM and determine whether an exception is thrown on invalid bytes, use a constructor that accepts an encoding object as a parameter, such as StreamWriter(String, Boolean, Encoding).
The
The Caution When you compile a set of characters with a particular cultural setting and retrieve those same characters with a different cultural setting, the characters might not be interpretable, and could cause an exception to be thrown. For a list of common I/O tasks, see Common I/O Tasks. See alsoApplies toStreamWriter(String, FileStreamOptions)Initializes a new instance of the StreamWriter class for the specified file, using the default encoding, and configured with the specified FileStreamOptions object.
Parameters
The complete file path to write to.
An object that specifies the configuration options for the underlying FileStream. Exceptions
See alsoApplies toStreamWriter(Stream, Encoding, Int32)Initializes a new instance of the StreamWriter class for the specified stream by using the specified encoding and buffer size.
Parameters
The stream to write to.
The character encoding to use.
The buffer size, in bytes. Exceptions
ExamplesThe following example demonstrates this constructor.
Remarks
This constructor initializes the Encoding property using the The StreamWriter object calls Dispose() on the provided Stream object when StreamWriter.Dispose is called. Caution When you compile a set of characters with a particular cultural setting and retrieve those same characters with a different cultural setting, the characters might not be interpretable, and could cause an exception to be thrown. For a list of common I/O tasks, see Common I/O Tasks. See alsoApplies toStreamWriter(String, Boolean, Encoding)Initializes a new instance of the StreamWriter class for the specified file by using the specified encoding and default buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file.
Parameters
The complete file path to write to.
The character encoding to use. ExceptionsAccess is denied.
-or-
The specified path is invalid (for example, it is on an unmapped drive).
The specified path, file name, or both exceed the system-defined maximum length. The caller does not have the required permission. ExamplesThe following example demonstrates this constructor.
RemarksThis constructor initializes the Encoding property using the encoding parameter. For additional information, see Encoding.
Caution When you compile a set of characters with a particular cultural setting and retrieve those same characters with a different cultural setting, the characters might not be interpretable, and could cause an exception to be thrown. For a list of common I/O tasks, see Common I/O Tasks. See alsoApplies toStreamWriter(String, Encoding, FileStreamOptions)Initializes a new instance of the StreamWriter class for the specified file, using the specified encoding, and configured with the specified FileStreamOptions object.
Parameters
The complete file path to write to.
The character encoding to use.
An object that specifies the configuration options for the underlying FileStream. Exceptions
See alsoApplies toStreamWriter(Stream, Encoding, Int32, Boolean)Initializes a new instance of the StreamWriter class for the specified stream by using the specified encoding and buffer size, and optionally leaves the stream open.
Parameters
The stream to write to.
The character encoding to use.
The buffer size, in bytes.
Exceptions
ExamplesThe following example demonstrates this constructor.
Remarks
Unless you set the
This constructor initializes the Encoding property by using the Caution When you compile a set of characters with a particular cultural setting and retrieve those same characters with a different cultural setting, the characters might not be interpretable, and could cause an exception to be thrown. Applies toStreamWriter(String, Boolean, Encoding, Int32)Initializes a new instance of the StreamWriter class for the specified file on the specified path, using the specified encoding and buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file.
Parameters
The complete file path to write to.
The character encoding to use.
The buffer size, in bytes. Exceptions
-or-
The caller does not have the required permission. Access is denied. The specified path is invalid (for example, it is on an unmapped drive). The specified path, file name, or both exceed the system-defined maximum length. ExamplesThe following example demonstrates this constructor.
RemarksThis constructor initializes the Encoding property using the encoding parameter. For additional information, see Encoding.
Caution When you compile a set of characters with a particular cultural setting and retrieve those same characters with a different cultural setting, the characters might not be interpretable, and could cause an exception to be thrown. For a list of common I/O tasks, see Common I/O Tasks. See alsoApplies toSource/Referencehttps://docs.microsoft.com/en-us/dotnet/api/system.io.streamwriter.-ctor?view=net-5.0©sideway ID: 211100019 Last Updated: 11/19/2021 Revision: 0 Ref: ![]() References
![]() Latest Updated Links
![]() ![]() ![]() ![]() ![]() |
![]() Home 5 Business Management HBR 3 Information Recreation Hobbies 8 Culture Chinese 1097 English 339 Travel 18 Reference 79 Computer Hardware 254 Software Application 213 Digitization 37 Latex 52 Manim 205 KB 1 Numeric 19 Programming Web 289 Unicode 504 HTML 66 CSS 65 SVG 46 ASP.NET 270 OS 431 DeskTop 7 Python 72 Knowledge Mathematics Formulas 8 Set 1 Logic 1 Algebra 84 Number Theory 206 Trigonometry 31 Geometry 34 Calculus 67 Engineering Tables 8 Mechanical Rigid Bodies Statics 92 Dynamics 37 Fluid 5 Control Acoustics 19 Natural Sciences Matter 1 Electric 27 Biology 1 |
Copyright © 2000-2025 Sideway . All rights reserved Disclaimers last modified on 06 September 2019