C# UTF8Encoding IsBrowserSave
Description
UTF8Encoding IsBrowserSave
When overridden in a derived
class, gets a value indicating whether the current encoding can be used by
browser clients for saving content.
Syntax
UTF8Encoding.IsBrowserSave
has the following syntax.
public virtual bool IsBrowserSave { get; }
Example
using System;/*from ww w. j a v a 2 s. c o m*/
using System.Text;
public class SamplesEncoding {
public static void Main() {
foreach( EncodingInfo ei in Encoding.GetEncodings() ) {
Encoding e = ei.GetEncoding();
Console.Write( "{0,-6} {1,-25} ", ei.CodePage, ei.Name );
Console.Write( "{0,-8} {1,-8} ", e.IsBrowserDisplay, e.IsBrowserSave );
Console.Write( "{0,-8} {1,-8} ", e.IsMailNewsDisplay, e.IsMailNewsSave );
Console.WriteLine( "{0,-8} {1,-8} ", e.IsSingleByte, e.IsReadOnly );
}
}
}
The code above generates the following result.