PersonalStorage.MergeWith

MergeWith(string[])

Merges the pst storage with one or more other pst files. Thus, the combined files are sources.

public void MergeWith(string[] sourceFileNames)
ParameterTypeDescription
sourceFileNamesString[]The source file names.

Exceptions

exceptioncondition
ArgumentNullException“Throws when the filename collection is null.”
ArgumentException“Throws when the filename in collection is null or empty.”

See Also


MergeWith(Stream[])

Merges the pst storage with one or more other pst streams. Thus, the combined stream are sources.

public void MergeWith(Stream[] sourceStreams)
ParameterTypeDescription
sourceStreamsStream[]The source streams.

Exceptions

exceptioncondition
ArgumentNullException“Throws when the stream collection is null.”
ArgumentException“Throws when the stream in collection is null.”

See Also