Microsoft.VisualStudio.Project.ConfigProvider.NotifyOnCfgNameRenamed C# (CSharp) Method

NotifyOnCfgNameRenamed() protected method

Called when a config name was renamed
protected NotifyOnCfgNameRenamed ( string oldName, string newName ) : void
oldName string Old configuration name
newName string New configuration name
return void
        protected virtual void NotifyOnCfgNameRenamed(string oldName, string newName)
        {
            foreach(IVsCfgProviderEvents sink in this.cfgEventSinks)
            {
                ErrorHandler.ThrowOnFailure(sink.OnCfgNameRenamed(oldName, newName));
            }
        }