HttpWebResponse.GetResponseStream Yöntem

Tanım

Sunucudan yanıtın gövdesini okumak için kullanılan akışı alır.

C#
public override System.IO.Stream GetResponseStream();

Döndürülenler

Stream Yanıtın gövdesini içeren.

Özel durumlar

Yanıt akışı yok.

Geçerli örnek atıldı.

Örnekler

Aşağıdaki örnekte, sunucudan Stream yanıtı okumak için kullanılan örneği döndürmek için nasıl kullanılacağı GetResponseStream gösterilmektedir.

C#
// Creates an HttpWebRequest with the specified URL.
    HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create(url);
    // Sends the HttpWebRequest and waits for the response.			
    HttpWebResponse myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse();
    // Gets the stream associated with the response.
    Stream receiveStream = myHttpWebResponse.GetResponseStream();
    Encoding encode = System.Text.Encoding.GetEncoding("utf-8");
    // Pipes the stream to a higher level stream reader with the required encoding format.
    StreamReader readStream = new StreamReader( receiveStream, encode );
Console.WriteLine("\r\nResponse stream received.");
    Char[] read = new Char[256];
    // Reads 256 characters at a time.
    int count = readStream.Read( read, 0, 256 );
    Console.WriteLine("HTML...\r\n");
    while (count > 0)
        {
            // Dumps the 256 characters on a string and displays the string to the console.
            String str = new String(read, 0, count);
            Console.Write(str);
            count = readStream.Read(read, 0, 256);
        }
    Console.WriteLine("");
    // Releases the resources of the response.
    myHttpWebResponse.Close();
    // Releases the resources of the Stream.
    readStream.Close();

Açıklamalar

yöntemi, GetResponseStream istenen İnternet kaynağından veri akışını döndürür.

Not

Akışı kapatmak ve bağlantıyı yeniden kullanmak üzere serbest bırakmak için , Stream.Dispose, HttpWebResponse.Closeveya HttpWebResponse.Dispose yöntemlerinden birini Stream.Closeçağırmanız gerekir. Hem hem de StreamHttpWebResponse örneklerini kapatmak veya atmak gerekmez, ancak bunu yapmak hataya neden olmaz. Akışın kapatılamaması veya atılamaması, uygulamanızın bağlantılarının kapanmasına neden olur.

Not

Uygulamanızda ağ izlemeyi etkinleştirdiğinizde, bu üye izleme bilgilerini çıkarır. Daha fazla bilgi için bkz. .NET Framework'te Ağ İzleme.

Şunlara uygulanır

Ürün Sürümler
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1
UWP 10.0