TraceSection.RequestLimit 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定數值,表示 ASP.NET 儲存此應用程式的追蹤資訊時,最多可以記錄多少筆要求。
public:
property int RequestLimit { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("requestLimit", DefaultValue=10)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int RequestLimit { get; set; }
[<System.Configuration.ConfigurationProperty("requestLimit", DefaultValue=10)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.RequestLimit : int with get, set
Public Property RequestLimit As Integer
屬性值
存放在伺服器上的要求數量上限。 預設值為 10。
- 屬性
範例
下列程式碼範例示範如何使用 RequestLimit 屬性。 此程式碼範例是提供給 類別之較大範例的 TraceSection 一部分。
// Get the current RequestLimit property value.
Int32 requestLimitValue = traceSection.RequestLimit;
// Set the RequestLimit property to 256.
traceSection.RequestLimit = 256;
' Get the current RequestLimit property value.
Dim requestLimitValue As Int32 = traceSection.RequestLimit
' Set the RequestLimit property to 256.
traceSection.RequestLimit = 256
備註
最大要求限制為 10,000。 如果指定大於 10,000 的值,它會以無訊息方式進位至 10,000 ASP.NET。
屬性 MostRecent 會取得或設定值,這個值會決定儲存在伺服器上的要求是最新的要求,還是要抵達的第一個要求。
注意 當要求數目超過此設定所加加的限制且 MostRecent 為 false
時,追蹤記錄中不會再儲存任何要求。 如果 MostRecent 為 true
,則最新的要求會儲存到此設定所加加的限制,並捨棄較舊的要求。