VariableClass.IncludeInDebugDump 属性

定义

public:
 virtual property bool IncludeInDebugDump { bool get(); void set(bool value); };
public virtual bool IncludeInDebugDump { get; set; }
member this.IncludeInDebugDump : bool with get, set
Public Overridable Property IncludeInDebugDump As Boolean

属性值

一个 布尔值 ,指定变量值是否包含在调试转储文件中。

实现

注解

对于用户定义的变量和系统变量,IncludeInDebugDump 选项的默认值为 true

但是,对于用户定义的变量,当以下条件为 true 时,系统会将 IncludeInDebugDump 选项重置为 false:

  • EvaluateAsExpression如果变量属性设置为 true,系统会将 IncludeInDebugDump 选项重置为 false

    若要在调试转储文件中包括表达式文本作为变量值,请将 IncludeInDebugDump 选项设置为 true

  • 如果变量数据类型更改为字符串,则系统将 IncludeInDebugDump 选项重置为 false

适用于