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)
Parameter | Type | Description |
---|
sourceFileNames | String[] | The source file names. |
Exceptions
exception | condition |
---|
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)
Parameter | Type | Description |
---|
sourceStreams | Stream[] | The source streams. |
Exceptions
exception | condition |
---|
ArgumentNullException | “Throws when the stream collection is null.” |
ArgumentException | “Throws when the stream in collection is null.” |
See Also