SessionPageStateSection.DefaultHistorySize Campo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Definisce le dimensioni della cronologia della pagina.
public: int DefaultHistorySize = 9;
public const int DefaultHistorySize = 9;
val mutable DefaultHistorySize : int
Public Const DefaultHistorySize As Integer = 9
Valore del campo
Value = 9Esempio
Nell'esempio di codice seguente viene illustrato come ottenere la DefaultHistorySize proprietà dal file di configurazione associato a un'applicazione Web esistente.
// Get the history size.
int historySize =
sessionPageState.HistorySize;
string msg = String.Format(
"Current history size: {0}\n",
historySize.ToString());
Console.Write(msg);
if (!sessionPageState.IsReadOnly())
{
// Double current history size.
sessionPageState.HistorySize =
2 * sessionPageState.HistorySize;
configuration.Save();
historySize =
sessionPageState.HistorySize;
msg = String.Format(
"New history size: {0}\n",
historySize.ToString());
Console.Write(msg);
}
' Get the history size.
Dim historySize As Integer = _
sessionPageState.HistorySize
Dim msg As String = _
String.Format( _
"Current history size: {0}" + _
ControlChars.Lf, historySize.ToString())
Console.Write(msg)
If Not sessionPageState.IsReadOnly() Then
' Double current history size.
sessionPageState.HistorySize = _
2 * sessionPageState.HistorySize
configuration.Save()
historySize = sessionPageState.HistorySize
msg = String.Format( _
"New history size: {0}" + _
ControlChars.Lf, historySize.ToString())
Console.Write(msg)
End If
Si applica a
Vedi anche
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.