HttpWebResponse.CharacterSet Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá znakovou sadu odpovědi.
public:
property System::String ^ CharacterSet { System::String ^ get(); };
public string? CharacterSet { get; }
public string CharacterSet { get; }
member this.CharacterSet : string
Public ReadOnly Property CharacterSet As String
Hodnota vlastnosti
Řetězec, který obsahuje znakovou sadu odpovědi.
Výjimky
Aktuální instance byla odstraněna.
Příklady
Následující příklad získá znakovou sadu odpovědi.
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'." );
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'.")
Poznámky
Vlastnost CharacterSet obsahuje hodnotu, která popisuje znakovou sadu odpovědi. Informace o této znakové sadě jsou převzaty z hlavičky vrácené s odpovědí.
Platí pro
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.