AODL.Package.ODFPackage.Close C# (CSharp) Method

Close() public method

Closes this ODFPackage. If this package has changes they will be commited and saved. If you have done changes to the package and won't save them use the AbortPackageUpdate() method before calling Close().
public Close ( ) : void
return void
		public void Close()
		{
            //return;
			//this.CommitChanges();
            if (this._package.IsUpdating)
            {
                this._package.CommitUpdate();    
            }            
			this._package.Close();
		}
	}