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();
		}
	}