IVsContainedLanguageCodeSupport::OnRenamed Method (ContainedLanguageRenameType, String^, String^)
Visual Studio 2015
Called from a containing IVsContainedLanguageHost object indicating that a rename of a specified type was initiated.
Assembly: Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)
Parameters
- clrt
-
Type:
Microsoft.VisualStudio.TextManager.Interop::ContainedLanguageRenameType
[in] A value from the ContainedLanguageRenameType enumeration specifying what is being renamed.
- bstrOldID
-
Type:
System::String^
[in] The old name.
- bstrNewID
-
Type:
System::String^
[in] The new name.
From singlefileeditor.idl:
HRESULT OnRenamed( [in] ContainedLanguageRenameType clrt, [in] BSTR bstrOldID, [in] BSTR bstrNewID );
This method is typically called from the OnRenamed method in the IVsContainedLanguageHost interface that is in turn called from the contained language service if a member name was renamed.
Show: