WebClient.AllowWriteStreamBuffering プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
注意事項
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
WebClient インスタンスのインターネット リソースに書き込んだデータをバッファリングするかどうかを示す値を取得または設定します。
public:
property bool AllowWriteStreamBuffering { 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 AllowWriteStreamBuffering { 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.AllowWriteStreamBuffering : bool with get, set
Public Property AllowWriteStreamBuffering As Boolean
プロパティ値
インターネット リソースに書き込むデータのバッファリングを有効にする場合は true
。バッファリングを無効にする場合は false
。 既定値は、true
です。
- 属性
注釈
プロパティが AllowWriteStreamBufferingtrue
の場合、データはメモリにバッファーされるため、より大きなチャンクでインターネット リソースに効率的に書き込むことができます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET