Microsoft.VisualStudio.Project.SolutionListenerForProjectEvents.RaiseAfterProjectFileOpened C# (CSharp) Méthode

RaiseAfterProjectFileOpened() protected méthode

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.
Résultat 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));
			}
		}