Package.Close Method
Definition
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. Writing a Package Sample and Reading a Package Sample show how to close and dispose a package by using the using
statement.