次の方法で共有


HttpRuntimeSection.RequestLengthDiskThreshold プロパティ

定義

入力ストリームのバッファリングのしきい値を取得または設定します。

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

プロパティ値

Int32

入力ストリーム バッファリングのしきい値を示すバイト数。 既定値は 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 超えてはなりません。 要求エンティティがこのしきい値を超えると、ディスクに透過的にバッファーされます。

適用対象