WebClient.AllowReadStreamBuffering Propiedad

Definición

Precaución

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

Obtiene o establece un valor que indica si se deben almacenar en el búfer los datos leídos desde el recurso de Internet para una instancia de WebClient.

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

Valor de propiedad

true para habilitar el almacenamiento en búfer de los datos recibidos del recurso de Internet; false para deshabilitar el almacenamiento en búfer. De manera predeterminada, es true.

Atributos

Comentarios

Cuando la AllowReadStreamBuffering propiedad es true, los datos se almacena en búfer en memoria, por lo que está listo para ser leídos por la aplicación.

Se aplica a