Microsoft.VisualStudio.Project.SolutionListenerForProjectEvents.RaiseAfterProjectFileOpened C# (CSharp) Method

RaiseAfterProjectFileOpened() protected method

Raises after project file opened event.
protected RaiseAfterProjectFileOpened ( bool added ) : void
added bool True if the project is added to the solution after the solution is opened. false if the project is added to the solution while the solution is being opened.
return void
		protected virtual void RaiseAfterProjectFileOpened(bool added)
		{
			// Save event in temporary variable to avoid race condition.
			EventHandler<ProjectFileOpenedEventArgs> tempEvent = this.ProjectFileOpened;
			if(tempEvent != null)
			{
				tempEvent(this, new ProjectFileOpenedEventArgs(added));
			}
		}