HttpRuntimeSection.RequestLengthDiskThreshold Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera lub ustawia próg buforowania strumienia wejściowego.
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
Wartość właściwości
Liczba bajtów wskazujących próg buforowania strumienia wejściowego. Wartość domyślna to 80 kilobajtów.
- Atrybuty
Wyjątki
Wybrana wartość jest większa niż MaxRequestLength.
Przykłady
W poniższym przykładzie pokazano, jak używać RequestLengthDiskThreshold właściwości .
// 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
Uwagi
Właściwość RequestLengthDiskThreshold określa limit progu buforowania strumienia wejściowego w liczbie bajtów. Jego wartość nie powinna przekraczać MaxRequestLength wartości właściwości. Po przekroczeniu tego progu jednostka żądania jest buforowana w sposób przezroczysty na dysku.