IVsProjectCfg2::get_IsPrivate Method (Int32)

 

Obsolete method. Returns whether or not a configuration is private or shared.

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

int get_IsPrivate(
	[OutAttribute] int% pfPrivate
)

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::Int32

If 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.

Return to top
Show: