XmlWriterSettings.NewLineChars Property
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.
Gets or sets the character string to use for line breaks.
public:
property System::String ^ NewLineChars { System::String ^ get(); void set(System::String ^ value); };
public string NewLineChars { get; set; }
member this.NewLineChars : string with get, set
Public Property NewLineChars As String
Property Value
The character string to use for line breaks. This can be set to any string value. However, to ensure valid XML, you should specify only valid white space characters, such as space characters, tabs, carriage returns, or line feeds. The default is \r\n
(carriage return, new line) for non-Unix platforms, and \n
(new line) for Unix platforms.
Exceptions
The value assigned to the NewLineChars is null
.
Remarks
This property only applies to XmlWriter instances that output text content; otherwise, this setting is ignored. The XmlWriter throws an exception if the line break characters would result in invalid XML.