Activity.Save Method

Definition

Saves a copy of the Activity to a Stream.

Overloads

Save(Stream)

Writes the Activity to a Stream for persistence.

Save(Stream, IFormatter)

Writes the Activity to a Stream for persistence using the custom IFormatter provided for serialization.

Save(Stream)

Writes the Activity to a Stream for persistence.

public:
 void Save(System::IO::Stream ^ stream);
public void Save (System.IO.Stream stream);
member this.Save : System.IO.Stream -> unit
Public Sub Save (stream As Stream)

Parameters

stream
Stream

The Stream to which to save the Activity.

Exceptions

stream is a null reference (Nothing in Visual Basic).

Applies to

Save(Stream, IFormatter)

Writes the Activity to a Stream for persistence using the custom IFormatter provided for serialization.

public:
 void Save(System::IO::Stream ^ stream, System::Runtime::Serialization::IFormatter ^ formatter);
public void Save (System.IO.Stream stream, System.Runtime.Serialization.IFormatter formatter);
member this.Save : System.IO.Stream * System.Runtime.Serialization.IFormatter -> unit
Public Sub Save (stream As Stream, formatter As IFormatter)

Parameters

stream
Stream

The target Stream of the save operation.

formatter
IFormatter

The binary or custom IFormatter for the serialization.

Exceptions

stream is a null reference (Nothing in Visual Basic).

-or-

formatter is a null reference (Nothing).

This instance is in design mode.

Remarks

Soap formatters are not supported by Windows Workflow Foundation.

Applies to