WorkflowServiceAttributes.IgnoreExtensionDataObject 属性

定义

获取或设置一个值,该值指定是否将未知序列化数据发送到网络上。

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

属性值

Boolean

如果永不发送未知序列化数据,则为 true;否则为 false

示例

下面的示例演示如何访问 IgnoreExtensionDataObject 属性。

WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.IgnoreExtensionDataObject = true;
Dim attributes As New WorkflowServiceAttributes()
attributes.IgnoreExtensionDataObject = True

注解

默认值是 false

适用于