MonoDevelop.Projects.Project.NotifyFilePropertyChangedInProject C# (CSharp) Method

NotifyFilePropertyChangedInProject() private method

private NotifyFilePropertyChangedInProject ( ProjectFile file, string property ) : void
file ProjectFile
property string
return void
		internal void NotifyFilePropertyChangedInProject (ProjectFile file, string property)
		{
			NotifyModified ("Files");
			OnFilePropertyChangedInProject (new ProjectFileEventArgs (this, file, property));
		}

Usage Example

Esempio n. 1
0
 protected virtual void OnChanged(string property)
 {
     if (project != null)
     {
         project.NotifyFilePropertyChangedInProject(this, property);
     }
 }
All Usage Examples Of MonoDevelop.Projects.Project::NotifyFilePropertyChangedInProject