HttpRuntimeSection.RequestLengthDiskThreshold プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
入力ストリームのバッファリングのしきい値を取得または設定します。
public:
property int RequestLengthDiskThreshold { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("requestLengthDiskThreshold", DefaultValue=80)]
[System.Configuration.IntegerValidator(MinValue=1)]
public int RequestLengthDiskThreshold { get; set; }
[<System.Configuration.ConfigurationProperty("requestLengthDiskThreshold", DefaultValue=80)>]
[<System.Configuration.IntegerValidator(MinValue=1)>]
member this.RequestLengthDiskThreshold : int with get, set
Public Property RequestLengthDiskThreshold As Integer
プロパティ値
入力ストリーム バッファリングのしきい値を示すバイト数。 既定値は 80 KB です。
- 属性
例外
選択した値が MaxRequestLength を超えています。
例
RequestLengthDiskThreshold プロパティを使用する方法を次の例に示します。
// Get the RequestLengthDiskThreshold property value.
Response.Write("RequestLengthDiskThreshold: " +
configSection.RequestLengthDiskThreshold + "<br>");
// Set the RequestLengthDiskThreshold property value to 512 bytes.
configSection.RequestLengthDiskThreshold = 512;
' Get the RequestLengthDiskThreshold property value.
Response.Write("RequestLengthDiskThreshold: " & _
configSection.RequestLengthDiskThreshold & "<br>")
' Set the RequestLengthDiskThreshold property value to 512 bytes.
configSection.RequestLengthDiskThreshold = 512
注釈
このプロパティは RequestLengthDiskThreshold 、入力ストリーム バッファリングしきい値の制限をバイト数で指定します。 その値は、プロパティ値を MaxRequestLength 超えてはなりません。 要求エンティティがこのしきい値を超えると、ディスクに透過的にバッファーされます。