IDTSVariable100.IncludeInDebugDump 属性

定义

public:
 property bool IncludeInDebugDump { bool get(); void set(bool value); };
[System.Runtime.InteropServices.DispId(11)]
public bool IncludeInDebugDump { [System.Runtime.InteropServices.DispId(11)] get; [System.Runtime.InteropServices.DispId(11)] set; }
[<System.Runtime.InteropServices.DispId(11)>]
[<get: System.Runtime.InteropServices.DispId(11)>]
[<set: System.Runtime.InteropServices.DispId(11)>]
member this.IncludeInDebugDump : bool with get, set
Public Property IncludeInDebugDump As Boolean

属性值

如果变量值包含在调试转储文件中,则为;否则,就是假的。

属性

注解

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

然而,对于用户自定义变量,当以下条件为真时,系统会将 IncludeInDebugDump 选项重置为 false

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

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

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

适用于