HttpWebRequest.AllowReadStreamBuffering Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
When overridden in a descendant class, gets or sets a value that indicates whether to buffer the data read from the Internet resource.
Assembly: System.Net (in System.Net.dll)
Property Value
Type: System.Booleantrue to enable buffering of the data received from the Internet resource; false to disable buffering. The default is true.
| Exception | Condition |
|---|---|
| NotImplementedException | This property is not implemented. |
When AllowReadStreamBuffering is true, the data is buffered in memory so it is ready to be read by the application.
The AllowReadStreamBuffering property affects when the callback from BeginGetResponse method is called. When the AllowReadStreamBuffering property is true, the callback is raised once the entire stream has been downloaded into memory. When the AllowReadStreamBuffering property is false, the callback is raised as soon as the stream is available for reading which may be before all data has arrived.
If the application creates a class which derives from HttpWebRequest and does not override the AllowReadStreamBuffering property and then tries to get or set the AllowReadStreamBuffering property, a NotImplementedException is thrown.
If an application implements a custom WebRequest class and does not override the AllowReadStreamBuffering property, then the NotImplementedException is thrown.
' Change this Uri to a public server
Dim myUri As System.Uri = New Uri("http://www.contoso.com")
' Create a 'HttpWebRequest' object.
Dim myHttpWebRequest As HttpWebRequest = WebRequest.Create(myUri)
' Get the 'AllowReadStreamBuffering' property and print the current value
outputBlock.Text &= "AllowReadStreamBuffering is "
If myHttpWebRequest.AllowReadStreamBuffering Then
outputBlock.Text &= "true"
outputBlock.Text &= vbCrLf
Else
outputBlock.Text &= "false"
outputBlock.Text &= vbCrLf
End If
' Set the 'AllowReadStreamBuffering' property to true.
myHttpWebRequest.AllowReadStreamBuffering= False
' Now call HttpWebRequest.BeginGetResponse()