Task.Save

Save(Stream)

Saves current object to the given stream using MSG format.

public virtual void Save(Stream stream)
ParameterTypeDescription
streamStreamA stream to save to.

See Also


Save(string)

Saves current object into file using MSG format.

public virtual void Save(string filePath)
ParameterTypeDescription
filePathStringA file name.

See Also


Save(string, TaskSaveOptions)

Saves current object into file using specified options.

public virtual void Save(string filePath, TaskSaveOptions saveOptions)
ParameterTypeDescription
filePathStringA file name.
saveOptionsTaskSaveOptionsSpecified options.

See Also


Save(Stream, TaskSaveOptions)

Saves current object to the given stream using specified options.

public virtual void Save(Stream stream, TaskSaveOptions saveOptions)
ParameterTypeDescription
streamStreamA stream to save to.
saveOptionsTaskSaveOptionsSpecified options.>

See Also