WorkflowRuntimeServiceElement.OnDeserializeUnrecognizedAttribute 方法

定义

在反序列化 WorkflowRuntimeServiceElement 的过程中遇到未知属性时调用。

protected:
 override bool OnDeserializeUnrecognizedAttribute(System::String ^ name, System::String ^ value);
protected override bool OnDeserializeUnrecognizedAttribute (string name, string value);
override this.OnDeserializeUnrecognizedAttribute : string * string -> bool
Protected Overrides Function OnDeserializeUnrecognizedAttribute (name As String, value As String) As Boolean

参数

name
String

无法识别的特性的名称。

value
String

无法识别的特性的值。

返回

Boolean

OnDeserializeUnrecognizedAttribute(String, String) 始终返回 true

注解

将由名称和值指定的名称/值对添加到 Parameters 集合中。 对于配置文件中的元素,在元素中指定的任何属性都将 type <add> <Services> 作为名称/值对添加到 Parameters 集合中。

适用于