IVsSolution2::QueryRenameProject Method (IVsProject^, String^, String^, UInt32, Int32)

 

Determines whether the project can be renamed.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

int QueryRenameProject(
	IVsProject^ pProject,
	String^ pszMkOldName,
	String^ pszMkNewName,
	unsigned int dwReserved,
	[OutAttribute] int% pfRenameCanContinue
)

Parameters

pProject
Type: Microsoft.VisualStudio.Shell.Interop::IVsProject^

[in] IVsProject pointer for the project to rename.

pszMkOldName
Type: System::String^

[in] Old name of the project on disk.

pszMkNewName
Type: System::String^

[in] New name of the project on disk.

dwReserved
Type: System::UInt32

[in] Reserved for future use.

pfRenameCanContinue
Type: System::Int32

[out] If true, then the project can be renamed.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell.idl:

HRESULT IVsSolution2::QueryRenameProject(
   [in] IVsProject *pProject, 
   [in] LPCOLESTR pszMkOldName, 
   [in] LPCOLESTR pszMkNewName, 
   [in] DWORD dwReserved, 
   [out] BOOL *pfRenameCanContinue
);

This method checks whether the project can be renamed at the time a rename action is initiated. The solution file must be writeable before any attempt to rename the project is made. If the solution is currently under source control, but is not checked out, then the user is prompted to check out the file. If the project file is under source control, then it must not be checked out. This method basically calls QueryEditSolutionFile and IVsTrackProjectDocuments2:: OnQueryRenameFile for the project file.

Return to top
Show: