WorkflowMarkupSerializer.SerializeToString Method

Definition

Serializes the specified Object to a string.

protected public:
 virtual System::String ^ SerializeToString(System::Workflow::ComponentModel::Serialization::WorkflowMarkupSerializationManager ^ serializationManager, System::Object ^ value);
protected internal virtual string SerializeToString (System.Workflow.ComponentModel.Serialization.WorkflowMarkupSerializationManager serializationManager, object value);
abstract member SerializeToString : System.Workflow.ComponentModel.Serialization.WorkflowMarkupSerializationManager * obj -> string
override this.SerializeToString : System.Workflow.ComponentModel.Serialization.WorkflowMarkupSerializationManager * obj -> string
Protected Friend Overridable Function SerializeToString (serializationManager As WorkflowMarkupSerializationManager, value As Object) As String

Parameters

serializationManager
WorkflowMarkupSerializationManager

The WorkflowMarkupSerializationManager that manages the serialization process.

value
Object

The Object to serialize to a string.

Returns

A string that contains the serialized Object.

Exceptions

serializationManager or value contains a null reference (Nothing in Visual Basic).

Remarks

If a Delegate instance is assignable from value, SerializeToString writes the method name associated with value to a string. If a Type instance is assignable from value, SerializeToString writes the fully-qualified name of the type associated with value to a string. If neither of these conditions exist, SerializeToString converts value to a string and writes the result.

Applies to