WinDoc.IndexUpdateManager.FireSearchIndexCreationEvent C# (CSharp) Method

FireSearchIndexCreationEvent() private method

private FireSearchIndexCreationEvent ( bool status ) : void
status bool
return void
		void FireSearchIndexCreationEvent (bool status)
		{
			IsCreatingSearchIndex = status;
			Thread.MemoryBarrier ();
			var evt = UpdaterChange;
			if (evt != null)
				evt (this, EventArgs.Empty);
		}