IVsProjectCfg2::get_IsPrivate Method (Int32)
Visual Studio 2015
Obsolete method. Returns whether or not a configuration is private or shared.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- pfPrivate
-
Type:
System::Int32
[out] Pointer to a flag set to true if the configuration is private and false if it is shared.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsProjectCfg2::get_IsPrivate( [out]BOOL *pfPrivate );
This method will be used in the future to support distinguishing between shared and private configurations. Currently, there is no such distinction and projects should always return false in the contents of pfPrivate.
Show: