HttpRuntimeSection.RequestLengthDiskThreshold Eigenschaft

Definition

Ruft den Schwellenwert für die Eingabestreampufferung ab oder legt diesen fest.

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

Eigenschaftswert

Int32

Die Anzahl von Bytes, die für den Schwellenwert der Eingabestreampufferung angegeben sind. Der Standardwert ist 80 Kilobytes.

Attribute

Ausnahmen

Der ausgewählte Wert ist größer als MaxRequestLength.

Beispiele

Im folgenden Beispiel wird die Verwendung der RequestLengthDiskThreshold-Eigenschaft veranschaulicht.

// 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

Hinweise

Die RequestLengthDiskThreshold Eigenschaft gibt den Schwellenwert für die Eingabestrompufferung in Anzahl von Bytes an. Der Wert sollte den MaxRequestLength Eigenschaftswert nicht überschreiten. Nachdem eine Anforderungsentität diesen Schwellenwert überschritten hat, wird sie transparent auf dem Datenträger gepuffert.

Gilt für