Microsoft.VisualStudio.Project.ConfigProvider.NotifyOnPlatformNameDeleted C# (CSharp) Метод

NotifyOnPlatformNameDeleted() защищенный Метод

Called when a platform name was deleted
protected NotifyOnPlatformNameDeleted ( string platformName ) : void
platformName string The name of the platform.
Результат void
        protected virtual void NotifyOnPlatformNameDeleted(string platformName)
        {
            foreach(IVsCfgProviderEvents sink in this.cfgEventSinks)
            {
                ErrorHandler.ThrowOnFailure(sink.OnPlatformNameDeleted(platformName));
            }
        }