Trace.IndentSize 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置缩进的空格数。
public:
static property int IndentSize { int get(); void set(int value); };
public static int IndentSize { get; set; }
static member IndentSize : int with get, set
Public Shared Property IndentSize As Integer
属性值
缩进的空格数。 默认值为四。
注解
将此 TextWriterTraceListener 数字解释为空格。 忽略 EventLogTraceListener 此值。
此属性基于每个线程/每个请求存储。
若要在 .NET Framework 应用中设置 AutoFlushTrace 和 IndentSize ,还可以编辑与应用程序名称对应的配置文件。 配置文件的格式应如以下示例所示:
<configuration>
<system.diagnostics>
<trace autoflush="false" indentsize="3" />
</system.diagnostics>
</configuration>