Package.Close Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Saves and closes the package plus all underlying part streams.
public:
void Close();
public void Close ();
member this.Close : unit -> unit
Public Sub Close ()
Remarks
For the Package class Close and Dispose perform the same operation - there is no reason to call Dispose if you call Close, or vice-versa.
Close and Dispose internally call Flush.
Note
The using
statement (different from the using
namespace directive) is the recommended way to Close and Dispose a package.