C# ASCIIEncoding HeaderName
Description
ASCIIEncoding HeaderName
When overridden in a derived
class, gets a name for the current encoding that can be used with mail agent
header tags.
Syntax
ASCIIEncoding.HeaderName
has the following syntax.
public virtual string HeaderName { get; }
Example
using System;/*from w w w . j a v a 2 s .com*/
using System.Text;
public class SamplesEncoding
{
public static void Main()
{
foreach (EncodingInfo ei in Encoding.GetEncodings())
{
Encoding e = ei.GetEncoding();
Console.WriteLine(ei.Name);
Console.WriteLine(e.HeaderName);
}
}
}
The code above generates the following result.