Mono.Addins.AddinRegistry.Rebuild C# (CSharp) Method

Rebuild() public method

Regenerates the cached data of the add-in registry.
public Rebuild ( IProgressStatus monitor ) : void
monitor IProgressStatus /// Progress monitor to keep track of the rebuild operation. ///
return void
		public void Rebuild (IProgressStatus monitor)
		{
			database.Repair (monitor, currentDomain);

			// A full rebuild may cause the domain to change
			if (!string.IsNullOrEmpty (startupDirectory))
				currentDomain = database.GetFolderDomain (null, startupDirectory);
		}