LogFileRollover Propiedad
Gets or sets whether logging of Trace output will roll over to a new file, or whether it will stop when the maximum log file size that is specified in LogFileSize is reached.
Espacio de nombres: Microsoft.AnalysisServices
Ensamblado: Microsoft.AnalysisServices (en Microsoft.AnalysisServices.dll)
Sintaxis
'Declaración
Public Property LogFileRollover As Boolean
Get
Set
'Uso
Dim instance As Trace
Dim value As Boolean
value = instance.LogFileRollover
instance.LogFileRollover = value
public bool LogFileRollover { get; set; }
public:
property bool LogFileRollover {
bool get ();
void set (bool value);
}
member LogFileRollover : bool with get, set
function get LogFileRollover () : boolean
function set LogFileRollover (value : boolean)
Valor de la propiedad
Tipo: System. . :: . .Boolean
true if logging of Trace output will roll over to a new file when the maximum log file size that is specified in LogFileSize is reached; false if it should stop.
Comentarios
If the value of the LogFileRollover parameter is set to true, a new file is started when the size of the log file exceeds the value that is specified in the LogFileSize; otherwise, logging stops.