Trace.IndentLevel Właściwość

Definicja

Pobiera lub ustawia poziom wcięcia.

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

Wartość właściwości

Poziom wcięcia. Wartością domyślną jest zero.

Przykłady

Poniższy przykład zwiększa i dekrementuje poziom wcięcia i emituje komunikaty śledzenia.

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")

Ten przykład generuje następujące wyniki:

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

Uwagi

Właściwość IndentLevel reprezentuje liczbę przypadków zastosowania wcięcia rozmiaru IndentSize . Ta właściwość jest przechowywana dla poszczególnych wątków/żądań.

Dotyczy

Zobacz też