WorkflowServiceAttributes.IgnoreExtensionDataObject 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指定是否将未知序列化数据发送到网络上。
public:
property bool IgnoreExtensionDataObject { bool get(); void set(bool value); };
public bool IgnoreExtensionDataObject { get; set; }
member this.IgnoreExtensionDataObject : bool with get, set
Public Property IgnoreExtensionDataObject As Boolean
属性值
如果永不发送未知序列化数据,则为 true
;否则为 false
。
示例
下面的示例演示如何访问 IgnoreExtensionDataObject
属性。
WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.IgnoreExtensionDataObject = true;
Dim attributes As New WorkflowServiceAttributes()
attributes.IgnoreExtensionDataObject = True
注解
默认值是 false
。