WorkflowMarkupSerializer.DeserializeFromString Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Deserializes extensible Application Markup Language (XAML) content from the specified string according to the given type of the property to deserialize.
protected public:
virtual System::Object ^ DeserializeFromString(System::Workflow::ComponentModel::Serialization::WorkflowMarkupSerializationManager ^ serializationManager, Type ^ propertyType, System::String ^ value);
protected internal virtual object DeserializeFromString (System.Workflow.ComponentModel.Serialization.WorkflowMarkupSerializationManager serializationManager, Type propertyType, string value);
abstract member DeserializeFromString : System.Workflow.ComponentModel.Serialization.WorkflowMarkupSerializationManager * Type * string -> obj
override this.DeserializeFromString : System.Workflow.ComponentModel.Serialization.WorkflowMarkupSerializationManager * Type * string -> obj
Protected Friend Overridable Function DeserializeFromString (serializationManager As WorkflowMarkupSerializationManager, propertyType As Type, value As String) As Object
Parameters
- serializationManager
- WorkflowMarkupSerializationManager
The WorkflowMarkupSerializationManager that manages the deserialization process.
- value
- String
A string that contains the XAML to deserialize.
Returns
The deserialized Object.
Exceptions
serializationManager
, propertyType
, or value
, contains a null reference (Nothing
in Visual Basic).
Remarks
value
must meet one of the following criteria:
it is a primitive type, a string, an enumeration, or a TimeSpan.
it can be assigned from the IConvertible interface or from the Delegate or Type classes.