AODL.Package.ODFPackage.Close C# (CSharp) 메소드

Close() 공개 메소드

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
리턴 void
		public void Close()
		{
            //return;
			//this.CommitChanges();
            if (this._package.IsUpdating)
            {
                this._package.CommitUpdate();    
            }            
			this._package.Close();
		}
	}