Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Called when a symbol is about to be renamed.
Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function OnBeforeGlobalSymbolRenamed ( _
    cItemsAffected As UInteger, _
    rgItemsAffected As UInteger(), _
    cRQNames As UInteger, _
    rglpszRQName As String(), _
    lpszNewName As String, _
    promptContinueOnFail As Integer _
) As Integer
int OnBeforeGlobalSymbolRenamed(
    uint cItemsAffected,
    uint[] rgItemsAffected,
    uint cRQNames,
    string[] rglpszRQName,
    string lpszNewName,
    int promptContinueOnFail
)
int OnBeforeGlobalSymbolRenamed(
    [InAttribute] unsigned int cItemsAffected, 
    [InAttribute] array<unsigned int>^ rgItemsAffected, 
    [InAttribute] unsigned int cRQNames, 
    [InAttribute] array<String^>^ rglpszRQName, 
    [InAttribute] String^ lpszNewName, 
    [InAttribute] int promptContinueOnFail
)
abstract OnBeforeGlobalSymbolRenamed : 
        cItemsAffected:uint32 * 
        rgItemsAffected:uint32[] * 
        cRQNames:uint32 * 
        rglpszRQName:string[] * 
        lpszNewName:string * 
        promptContinueOnFail:int -> int
function OnBeforeGlobalSymbolRenamed(
    cItemsAffected : uint, 
    rgItemsAffected : uint[], 
    cRQNames : uint, 
    rglpszRQName : String[], 
    lpszNewName : String, 
    promptContinueOnFail : int
) : int
Parameters
- cItemsAffected 
 Type: UInt32- The number of files affected by the rename. 
- rgItemsAffected 
 Type: array<UInt32[]- An array of VSITEMIDs that identifies the files that will be affected. 
- cRQNames 
 Type: UInt32- The number of renamed symbols. The number can be greater than one, if an overloaded symbol is renamed. 
- rglpszRQName 
 Type: array<String[]- The name of the symbol before rename. 
- lpszNewName 
 Type: String- The name of the symbol after the rename. 
- promptContinueOnFail 
 Type: Int32- true to prompt the user to continue the rename operation if one or more IVsRefactorNotify implementers fails; otherwise, false. 
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
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) {}
COM Signature
From vsshell80.idl:
HRESULT OnBeforeGlobalSymbolRenamed(
    [in] ULONG cItemsAffected,                               
    [in, size_is(cItemsAffected)] VSITEMID rgItemsAffected[],
    [in] ULONG cRQNames,                                     
    [in, size_is(cRQNames)] LPCOLESTR rglpszRQName[],        
    [in] LPCOLESTR lpszNewName,                              
    [in] BOOL promptContinueOnFail);                         
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.