Edit

Share via


WebClient.AllowReadStreamBuffering Property

Definition

Caution

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Gets or sets a value that indicates whether to buffer the data read from the Internet resource for a WebClient instance.

public:
 property bool AllowReadStreamBuffering { bool get(); void set(bool value); };
[System.Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
public bool AllowReadStreamBuffering { get; set; }
[<System.Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)>]
member this.AllowReadStreamBuffering : bool with get, set
Public Property AllowReadStreamBuffering As Boolean

Property Value

true to enable buffering of the data received from the Internet resource; false to disable buffering. The default is true.

Attributes

Remarks

Caution

WebRequest, HttpWebRequest, ServicePoint, and WebClient are obsolete, and you shouldn't use them for new development. Use HttpClient instead.

When the AllowReadStreamBuffering property is true, the data is buffered in memory so it is ready to be read by the app.

Applies to