SessionPageStateSection.DefaultHistorySize Campo
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Define el tamaño del historial de la página.
public: int DefaultHistorySize = 9;
public const int DefaultHistorySize = 9;
val mutable DefaultHistorySize : int
Public Const DefaultHistorySize As Integer = 9
Valor de campo
Value = 9Ejemplos
En el ejemplo de código siguiente se muestra cómo obtener la DefaultHistorySize propiedad del archivo de configuración asociado a una aplicación web existente.
// 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
Se aplica a
Consulte también
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.