Skip to main content
.NET Framework Class Library
HttpWebResponse..::.ContentEncoding Property

Gets the method that is used to encode the body of the response.

Namespace: System.Net
Assembly: System (in System.dll)
Syntax
Public ReadOnly Property ContentEncoding As String
public string ContentEncoding { get; }
public:
property String^ ContentEncoding {
	String^ get ();
}
member ContentEncoding : string

Property Value

Type: System..::.String
A string that describes the method that is used to encode the body of the response.
Exceptions
ExceptionCondition
ObjectDisposedException

The current instance has been disposed.

Remarks

The ContentEncoding property contains the value of the Content-Encoding header returned with the response.

Examples

The following example uses the ContentEncoding property to obtain the value of the Content-Encoding header returned with the response.


Try
   Dim myHttpWebRequest As HttpWebRequest = CType(WebRequest.Create(url), HttpWebRequest)
   Dim myHttpWebResponse As HttpWebResponse = CType(myHttpWebRequest.GetResponse(), HttpWebResponse)

   Console.WriteLine(("The encoding method used is: " + myHttpWebResponse.ContentEncoding))
   Console.WriteLine(("The character set used is :" + myHttpWebResponse.CharacterSet))

   Dim seperator As Char = "/"c
   Dim contenttype As [String] = myHttpWebResponse.ContentType
   ' Retrieve 'text' if the content type is of 'text/html.
   Dim maintype As [String] = contenttype.Substring(0, contenttype.IndexOf(seperator))
   ' Display only 'text' type.
   If [String].Compare(maintype, "text") = 0 Then
      Console.WriteLine(ControlChars.NewLine + " Content type is 'text'.")
      


	try 
 		  {	
			HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create(url); 
			HttpWebResponse myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse(); 

			Console.WriteLine("The encoding method used is: " + myHttpWebResponse.ContentEncoding);
			Console.WriteLine("The character set used is :" + myHttpWebResponse.CharacterSet);

			char seperator = '/';
			String contenttype = myHttpWebResponse.ContentType;
			// Retrieve 'text' if the content type is of 'text/html.
			String maintype = contenttype.Substring(0,contenttype.IndexOf(seperator));
			// Display only 'text' type.
			if (String.Compare(maintype,"text") == 0) 
				{
				Console.WriteLine("\n Content type is 'text'.");



try
{
   HttpWebRequest^ myHttpWebRequest = (HttpWebRequest^)( WebRequest::Create( url ) );
   HttpWebResponse^ myHttpWebResponse = (HttpWebResponse^)( myHttpWebRequest->GetResponse() );

   Console::WriteLine( "The encoding method used is: {0}", myHttpWebResponse->ContentEncoding );
   Console::WriteLine( "The character set used is : {0}", myHttpWebResponse->CharacterSet );

   char separator = '/';
   String^ contenttype = myHttpWebResponse->ContentType;
   // Retrieve 'text' if the content type is of 'text/html.
   String^ maintype = contenttype->Substring( 0, contenttype->IndexOf( separator ) );
   // Display only 'text' type.
   if ( String::Compare( maintype, "text" ) == 0 )
   {
      Console::WriteLine( "\n Content type is 'text'." );

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.