IVsPublishableProjectCfg::QueryStartPublish Method (UInt32, array<Int32>^, array<Int32>^)
Visual Studio 2015
Queries whether the project supports publishing and whether or not the project is ready for publishing.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int QueryStartPublish( unsigned int dwOptions, array<int>^ pfSupported, array<int>^ pfReady )
Parameters
- dwOptions
-
Type:
System::UInt32
[in] Integer. Bit flags specifying query options. Left to the implementer.
- pfSupported
-
Type:
array<System::Int32>^
[out] Optional. Boolean. Set to true if publishing is supported. Otherwise, false.
- pfReady
-
Type:
array<System::Int32>^
[out] Optional. Boolean. Set to true if the project is ready for publishing. Otherwise, false.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
[C++]
HRESULT IVsPublishableProjectCfg::QueryStartPublish( [in] DWORD dwOptions, [out, optional] BOOL *pfSupported, [out, optional] BOOL *pfReady );
Show: