ContainedLanguageRenameType Enumeration
Visual Studio 2015
Used to specify the type of element is being renamed in a contained language.
Assembly: Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)
| Member name | Description | |
|---|---|---|
| CLRT_CLASS | Specifies the rename type is a class. | |
| CLRT_CLASSMEMBER | Specifies the rename type is a class member. | |
| CLRT_NAMESPACE | Specifies the rename type is a namespace. | |
| CLRT_OTHER | Specifies the rename type is something other than a class, class member, or namespace. |
From singlefileeditor.idl:
typedef enum _CONTAINEDLANGUAGERENAMETYPE { CLRT_CLASS, CLRT_CLASSMEMBER, CLRT_NAMESPACE, CLRT_OTHER } ContainedLanguageRenameType;
These values are passed to the OnRenamed method in the IVsContainedLanguageCodeSupport interface and the OnRenamed method in the IVsContainedLanguageHost interface.
Show: