Variable.IncludeInDebugDump 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指定是在调试转储文件中包含用户定义变量的变量值还是包含系统变量的变量值。
public:
property bool IncludeInDebugDump { bool get(); void set(bool value); };
[Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyDescription(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "IncludeInDebugDumpDesc")]
public bool IncludeInDebugDump { get; set; }
[<Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyDescription(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "IncludeInDebugDumpDesc")>]
member this.IncludeInDebugDump : bool with get, set
Public Property IncludeInDebugDump As Boolean
属性值
如果变量值包含在调试转储文件中,则为 true;否则为 false。
- 属性
注解
对于用户定义的变量和系统变量,选项的 IncludeInDebugDump 默认值为 true
。
但是,对于用户定义的变量,当满足以下条件时,系统会将选项重置 IncludeInDebugDump 为 false
true:
EvaluateAsExpression如果变量属性设置为
true
,系统会将选项重置IncludeInDebugDump为false
。若要将表达式的文本作为变量值包含在调试转储文件中,请将 IncludeInDebugDump 选项设置为
true
。如果变量数据类型更改为字符串,系统会将 IncludeInDebugDump 选项重置为
false
。