Trace.IndentLevel Propiedad

Definición

Obtiene o establece el nivel de sangría.

public:
 static property int IndentLevel { int get(); void set(int value); };
public static int IndentLevel { get; set; }
static member IndentLevel : int with get, set
Public Shared Property IndentLevel As Integer

Valor de propiedad

Nivel de sangría. El valor predeterminado es cero.

Ejemplos

En el ejemplo siguiente se incrementan y disminuye el nivel de sangría y se emiten mensajes de seguimiento.

Trace::WriteLine( "List of errors:" );
Trace::Indent();
Trace::WriteLine( "Error 1: File not found" );
Trace::WriteLine( "Error 2: Directory not found" );
Trace::Unindent();
Trace::WriteLine( "End of list of errors" );
Trace.WriteLine("List of errors:");
Trace.Indent();
Trace.WriteLine("Error 1: File not found");
Trace.WriteLine("Error 2: Directory not found");
Trace.Unindent();
Trace.WriteLine("End of list of errors");
Trace.WriteLine("List of errors:")
Trace.Indent()
Trace.WriteLine("Error 1: File not found")
Trace.WriteLine("Error 2: Directory not found")
Trace.Unindent()
Trace.WriteLine("End of list of errors")

Este ejemplo produce el siguiente resultado:

List of errors:  
     Error 1: File not found  
     Error 2: Directory not found  
End of list of errors  

Comentarios

La IndentLevel propiedad representa el número de veces que se aplica la sangría de tamaño IndentSize . Esta propiedad se almacena por subproceso o por solicitud.

Se aplica a

Consulte también