C# UnicodeEncoding BodyName

Description

UnicodeEncoding BodyName When overridden in a derived class, gets a name for the current encoding that can be used with mail agent body tags.

Syntax

UnicodeEncoding.BodyName has the following syntax.


public virtual string BodyName { get; }

Example


using System;//from  www.  j a  v  a2s.c  om
using System.Text;

public class SamplesEncoding  {

   public static void Main()  {
      foreach( EncodingInfo ei in Encoding.GetEncodings() )  {
         Encoding e = ei.GetEncoding();
         Console.Write( "{0,-18} ", e.BodyName );
      }
   }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    System.Text »




ASCIIEncoding
Encoding
EncodingInfo
StringBuilder
UnicodeEncoding
UTF8Encoding