VsTeXProject.VisualStudio.Project.ProjectNode.RaiseProjectPropertyChanged C# (CSharp) Method

RaiseProjectPropertyChanged() private method

private RaiseProjectPropertyChanged ( string propertyName, string oldValue, string newValue ) : void
propertyName string
oldValue string
newValue string
return void
        protected void RaiseProjectPropertyChanged(string propertyName, string oldValue, string newValue)
        {
            if (null != projectPropertiesListeners)
            {
                projectPropertiesListeners(this, new ProjectPropertyChangedArgs(propertyName, oldValue, newValue));
            }
        }
ProjectNode