IVsSolution2.GetProjrefOfProject(IVsHierarchy, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a project reference string for the specified hierarchy.
public:
int GetProjrefOfProject(Microsoft::VisualStudio::Shell::Interop::IVsHierarchy ^ pHierarchy, [Runtime::InteropServices::Out] System::String ^ % pbstrProjref);
int GetProjrefOfProject(Microsoft::VisualStudio::Shell::Interop::IVsHierarchy const & pHierarchy, [Runtime::InteropServices::Out] std::wstring const & & pbstrProjref);
public int GetProjrefOfProject (Microsoft.VisualStudio.Shell.Interop.IVsHierarchy pHierarchy, out string pbstrProjref);
abstract member GetProjrefOfProject : Microsoft.VisualStudio.Shell.Interop.IVsHierarchy * string -> int
Public Function GetProjrefOfProject (pHierarchy As IVsHierarchy, ByRef pbstrProjref As String) As Integer
Parameters
- pHierarchy
- IVsHierarchy
[in] Pointer to the IVsHierarchy interface for the specified hierarchy.
- pbstrProjref
- String
[out] Pointer to the project reference string.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsSolution2::GetProjrefOfProject(
[in] IVsHierarchy *pHierarchy,
[out] BSTR *pbstrProjref
);
The following is a description of how the GetProjrefOfProject
method is used to support drag-and-drop operations:
The CF_VSPROJECTITEMS and CF_VSPROJECTS clipboard formats use the DROPFILES
structure in the same manner as CF_HDROP or CF_PRINTERS. The data that follows the DROPFILES
structure is a double-NULL-terminated list of Projref
strings. The consumer of the drop operation can use the Windows API DragQueryFile
to examine the data in the DROPFILES
structure. CF_VSPROJECTS format is offered when the Projref
strings identify projects as a whole, that is, *pitemid
== VSITEMID_ROOT. The CF_VSPROJECTITEMS format is offered when the Projref
strings identify one or more individual project items. Either CF_VSPROJECTS or CF_VSPROJECTITEMS should be offered, but never both.