IVsContainedLanguageHost::OnRenamed Method (ContainedLanguageRenameType, String^, String^)
Visual Studio 2015
Called to notify the editor that a name has been changed.
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 indicating what type of name was changed.
- bstrOldID
-
Type:
System::String^
[in] The fully qualified old name. For example, "MyNamespace.MyClass.MyMethod".
- bstrNewID
-
Type:
System::String^
[in] The fully qualified new name. For example, "MyNamespace.MyClass.MyNewMethod".
From singlefileeditor.idl:
HRESULT OnRenamed( [in] ContainedLanguageRenameType clrt, [in] BSTR bstrOldID, [in] BSTR bstrNewID );
Show: