IVsCfgProviderEventsHelper::NotifyOnCfgNameRenamed Method (String^, String^)
Visual Studio 2015
Fired to sink configuration name renamed events for all listeners in the array.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- pszOldName
-
Type:
System::String^
[in] Old configuration name removed from the configuration list.
- lszNewName
-
Type:
System::String^
[in] New configuration name added to the configuration list.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsCfgProviderEventsHelper::NotifyOnCfgNameRenamed( [in] LPCOLESTR pszOldName, [in] LPCOLESTR lszNewName );
If the rename operation is implemented as a clone and delete, you should fire the add/delete events instead of this one.
Show: