Saves the changed text with the specified format.

Save(Out, BinaryStreamType)

public void Save(out byte[] binaryData, BinaryStreamType binaryStreamType);

Save(Out, StringStreamType)

public void Save(out string stringData, StringStreamType stringStreamType);

Save(Out, BinaryStreamType, SaveSettings)

public void Save(out byte[] binaryData, BinaryStreamType binaryStreamType, SaveSettings saveSettings);

Save(Out, StringStreamType, SaveSettings)

public void Save(out string stringData, StringStreamType stringStreamType, SaveSettings saveSettings);

Parameters

Parameter Description
binaryData Specifies a byte array into which the changed text is saved. No memory needs to be allocated through the caller.
stringData Specifies a string into which the changed text is saved. No memory needs to be allocated through the caller.
binaryStreamType Specifies one of the BinaryStreamType values.
stringStreamType Specifies one of the StringStreamType values.
saveSettings Specifies a SaveSettings object with additional information and settings for the save operation.