HttpWebResponse.CharacterSet Eigenschap

Definitie

Hiermee haalt u de tekenset van het antwoord op.

public:
 property System::String ^ CharacterSet { System::String ^ get(); };
public string CharacterSet { get; }
member this.CharacterSet : string
Public ReadOnly Property CharacterSet As String

Waarde van eigenschap

Een tekenreeks die de tekenset van het antwoord bevat.

Uitzonderingen

Het huidige exemplaar is verwijderd.

Voorbeelden

In het volgende voorbeeld wordt de tekenset van het antwoord verkregen.

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
   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'.")

Opmerkingen

De CharacterSet eigenschap bevat een waarde die de tekenset van het antwoord beschrijft. Deze tekensetgegevens worden opgehaald uit de koptekst die wordt geretourneerd met het antwoord.

Van toepassing op