WorkflowMarkupSerializer.SerializeToString 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.
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.
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.