WorkflowRuntimeServiceElement.OnDeserializeUnrecognizedAttribute Method

Definition

Called when an unknown attribute is encountered while deserializing the 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

Parameters

name
String

The name of the unrecognized attribute.

value
String

The value of the unrecognized attribute.

Returns

OnDeserializeUnrecognizedAttribute(String, String) always returns true.

Remarks

The name-value pair specified by name and value is added to the Parameters collection. Any attributes other than type that are specified in an <add> element to the <Services> element in the configuration file are added as a name-value pair to the Parameters collection.

Applies to