IVsHierarchyRefactorNotify::OnGlobalSymbolRenamed Method (UInt32, array<UInt32>^, UInt32, array<String^>^, String^)
Visual Studio 2015
Called after a symbol is renamed.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int OnGlobalSymbolRenamed( unsigned int cItemsAffected, array<unsigned int>^ rgItemsAffected, unsigned int cRQNames, array<String^>^ rglpszRQName, String^ lpszNewName )
Parameters
- cItemsAffected
-
Type:
System::UInt32
The number of files affected by the rename.
- rgItemsAffected
-
Type:
array<System::UInt32>^
An array of VSITEMIDs that identifies the affected files.
- cRQNames
-
Type:
System::UInt32
The number of the renamed symbols. The number can be greater than one if an overloaded symbol is renamed.
- rglpszRQName
-
Type:
array<System::String^>^
The name of the symbol before rename.
- lpszNewName
-
Type:
System::String^
The name of the symbol after the rename.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
To stop the rename operation, the HRESULT must contain one of the following error codes:
E_ABORT
OLE_E_PROMPTSAVECANCELLED
OLECMDERR_E_CANCELED
HR_E_CSHARP_USER_CANCEL
A symbol with the same name may have more than one occurrence, if the language allows overloading operations, such as method overloading:
void SomeMethod() {}
void SomeMethod(int i) {}
From vsshell80.idl:
HRESULT OnGlobalSymbolRenamed(
[in] ULONG cItemsAffected,
[in, size_is(cItemsAffected)] VSITEMID rgItemsAffected[],
[in] ULONG cRQNames,
[in, size_is(cRQNames)] LPCOLESTR rglpszRQName[],
[in] LPCOLESTR lpszNewName);
Show: