DataStreamSupporter.Save

Save()

Saves the object’s data to the current DataStreamSupporter.

public virtual void Save()

See Also


Save(Stream)

Saves the object’s data to the specified stream.

public void Save(Stream stream)
ParameterTypeDescription
streamStreamThe stream to save the object’s data to.

See Also


Save(string)

Saves the object’s data to the specified file location.

public virtual void Save(string filePath)
ParameterTypeDescription
filePathStringThe file path to save the object’s data to.

See Also


Save(string, bool)

Saves the object’s data to the specified file location.

public virtual void Save(string filePath, bool overWrite)
ParameterTypeDescription
filePathStringThe file path to save the object’s data to.
overWriteBooleanif set to true over write the file contents, otherwise append will occur.

See Also